diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..1bac036 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Keep pinned source artifacts byte-for-byte identical to their publishers. +db/data/dfe/funded_early_education_childcare_2026/headline_figures_feeac_2011_2026.csv -diff diff --git a/chronicle/bundle.py b/chronicle/bundle.py index 2ff756c..514b8b1 100644 --- a/chronicle/bundle.py +++ b/chronicle/bundle.py @@ -21,6 +21,7 @@ BUNDLE_SOURCES_SCHEMA_VERSION = "ledger.bundle_sources.v1" DEFAULT_BUNDLE_SOURCES = tuple(sorted(SOURCE_PACKAGE_ALIASES)) UK_BUNDLE_SOURCE_PREFIXES = ( + "dfe", "dft", "dwp", "hmrc", @@ -36,6 +37,7 @@ "welshgov", ) UK_BUNDLE_SOURCES = ( + "dfe-funded-early-education-childcare-2026", "dft-nts-vehicle-ownership-2024", "dwp-benefit-cap-november-2025", "dwp-benefit-statistics-february-2026", @@ -59,6 +61,7 @@ "hmrc-salary-sacrifice-relief-2024-25", "hmrc-spi-income-bands-2023-24", "hmrc-spi-income-by-area-2023-24", + "hmrc-tax-free-childcare-march-2026", "hmrc-vat-firm-sector-targets-2024-25", "hmrc-vat-firm-targets-2024-25", "isc-annual-census-2023", diff --git a/chronicle/core.py b/chronicle/core.py index 16dcc3c..411388e 100644 --- a/chronicle/core.py +++ b/chronicle/core.py @@ -575,9 +575,7 @@ def fact_counts(facts: list[AggregateFact]) -> dict[str, dict[str, int]]: f"{fact.period.type}:{fact.period.value}" for fact in facts ), "by_assertion": _counter_dict(fact.assertion for fact in facts), - "by_provenance_class": _counter_dict( - fact.provenance_class for fact in facts - ), + "by_provenance_class": _counter_dict(fact.provenance_class for fact in facts), "missing_labels": {"count": sum(1 for fact in facts if not fact.label)}, "missing_provenance": { "count": sum(1 for fact in facts if _has_missing_provenance(fact)) @@ -651,7 +649,10 @@ def _validate_provenance_class( return if provenance_class == "survey_aggregate": - if type(fact.survey_instrument) is not str or not fact.survey_instrument.strip(): + if ( + type(fact.survey_instrument) is not str + or not fact.survey_instrument.strip() + ): errors.append( _issue( "missing_survey_instrument", diff --git a/chronicle/source_package.py b/chronicle/source_package.py index 993b4d9..7234621 100644 --- a/chronicle/source_package.py +++ b/chronicle/source_package.py @@ -93,6 +93,7 @@ "hmrc-salary-sacrifice-reform-2029-headcounts": Path( "hmrc/salary_sacrifice_reform_2029_headcounts" ), + "hmrc-tax-free-childcare-march-2026": Path("hmrc/tax_free_childcare_march_2026"), "ici-fact-book-table-30": Path("ici/fact_book_table_30"), "isc-annual-census-2023": Path("isc/annual_census_2023"), "isc-annual-census-2024": Path("isc/annual_census_2024"), @@ -129,6 +130,9 @@ "fpb-economic-outlook-2026-2031-june-2026": Path( "fpb/economic_outlook_2026_2031_june_2026" ), + "dfe-funded-early-education-childcare-2026": Path( + "dfe/funded_early_education_childcare_2026" + ), "dft-nts-vehicle-ownership-2024": Path("dft/nts_vehicle_ownership_2024"), "dwp-benefit-cap-november-2025": Path("dwp/benefit_cap_november_2025"), "dwp-benefit-statistics-february-2026": Path( @@ -1872,6 +1876,10 @@ def _measure_from_mapping( if payload.get("source_column_id") is not None else None ), + source_column_dimensions={ + str(key): _render_value(value, year=year) + for key, value in payload.get("source_column_dimensions", {}).items() + }, expected_cell_type=payload.get("expected_cell_type", "number"), expected_column_header_row=( int(payload["expected_column_header_row"]) diff --git a/chronicle/sources/specs.py b/chronicle/sources/specs.py index 41e2382..f87cfa9 100644 --- a/chronicle/sources/specs.py +++ b/chronicle/sources/specs.py @@ -167,6 +167,7 @@ class SourceRecordSetMeasure: divisor_column: str | None = None round_to: int | float | None = None source_column_id: str | None = None + source_column_dimensions: dict[str, Scalar] = field(default_factory=dict) expected_cell_type: str = "number" expected_column_header_row: int | None = None expected_column_header: Scalar = None @@ -846,6 +847,8 @@ def _record_set_spec_hash(spec: SourceRecordSetSpec) -> str: measure.pop("divisor_column", None) if measure.get("round_to") is None: measure.pop("round_to", None) + if not measure.get("source_column_dimensions"): + measure.pop("source_column_dimensions", None) if measure.get("expected_column_header") is None: measure.pop("expected_column_header", None) if measure.get("expected_column_header_row") is None: diff --git a/chronicle/suite.py b/chronicle/suite.py index 110a50f..07b9551 100644 --- a/chronicle/suite.py +++ b/chronicle/suite.py @@ -39,6 +39,7 @@ ) from chronicle.sources.specs import ( SourceRecordSpec, + SourceRecordSetSpec, SourceRegionSpec, build_cells_by_sheet_address, resolve_source_record, @@ -320,12 +321,16 @@ def build_source_suite( source_region_report.to_dict(), ) + source_record_set_specs = ( + source_package.build_source_record_set_specs(year) if source_package else [] + ) + source_record_specs = ( + source_package.build_source_record_specs(year) + if source_package + else build_source_record_specs(source, year=year) + ) source_record_report = validate_source_record_specs( - ( - source_package.build_source_record_specs(year) - if source_package - else build_source_record_specs(source, year=year) - ), + source_record_specs, cells, ) _write_report( @@ -386,6 +391,9 @@ def build_source_suite( fact_report=fact_report, concept_alignments=concept_report, require_axiom_validation=require_axiom_validation, + source_column_dimensions_by_record_id=( + _source_column_dimensions_by_record_id(source_record_set_specs) + ), selected_only_source_parse=( bool(source_package) and source_package.artifact.parser == "delimited_text_selected_rows" @@ -558,6 +566,7 @@ def build_agent_acceptance_report( fact_report: ValidationReport, concept_alignments: ConceptAlignmentReport, require_axiom_validation: bool = False, + source_column_dimensions_by_record_id: dict[str, dict[str, Any]] | None = None, selected_only_source_parse: bool = False, ) -> AgentAcceptanceReport: """Build the stricter report agents should satisfy before review.""" @@ -570,6 +579,7 @@ def build_agent_acceptance_report( source_rows_by_key = {build_source_row_key(row): row for row in rows} source_row_keys = set(source_rows_by_key) source_cells_by_key = {build_source_cell_key(cell): cell for cell in cells} + source_column_dimensions_by_record_id = source_column_dimensions_by_record_id or {} raw_r2_link_count = 0 if not cells and not rows: @@ -669,6 +679,12 @@ def build_agent_acceptance_report( for key in fact.source_cell_keys if key in source_cells_by_key ], + source_column_dimensions=( + source_column_dimensions_by_record_id.get( + fact.source_record_id or "", + {}, + ) + ), ): row_semantic_error_count += 1 errors.append(issue) @@ -924,8 +940,11 @@ def _row_semantic_evidence_issues( fact: AggregateFact, rows: list[SourceRow], cells: list[SourceCell], + *, + source_column_dimensions: dict[str, Any] | None = None, ) -> list[AgentAcceptanceIssue]: issues: list[AgentAcceptanceIssue] = [] + source_column_dimensions = source_column_dimensions or {} fact_key = build_fact_key(fact) period_values = _source_row_values(rows, "period") for value in period_values: @@ -943,12 +962,20 @@ def _row_semantic_evidence_issues( ) for variable, value in fact.filters.items(): - if value in (None, "all"): + if value is None: + continue + if value == "all" and not source_column_dimensions: continue matched_values = _source_row_values(rows, variable) if not matched_values: if _filter_evidenced_by_source_cells(cells, variable, value): continue + if _wide_table_filter_evidenced_by_source_column( + source_column_dimensions, + variable, + value, + ): + continue issues.append( AgentAcceptanceIssue( code="row_filter_not_evidenced", @@ -981,6 +1008,11 @@ def _row_semantic_evidence_issues( continue if _constraint_evidenced_by_source_cells(cells, constraint): continue + if _wide_table_constraint_evidenced_by_source_column( + source_column_dimensions, + constraint, + ): + continue matched_values = _source_row_values(rows, constraint.variable) if not matched_values: issues.append( @@ -1012,6 +1044,46 @@ def _row_semantic_evidence_issues( return issues +def _wide_table_filter_evidenced_by_source_column( + source_column_dimensions: dict[str, Any], + variable: str, + expected: Any, +) -> bool: + """Accept an explicitly declared dimension of a guarded source column.""" + if variable not in source_column_dimensions: + return False + declared = source_column_dimensions[variable] + return type(declared) is type(expected) and declared == expected + + +def _wide_table_constraint_evidenced_by_source_column( + source_column_dimensions: dict[str, Any], + constraint: Any, +) -> bool: + if constraint.operator != "==": + return False + return _wide_table_filter_evidenced_by_source_column( + source_column_dimensions, + str(constraint.variable), + constraint.value, + ) + + +def _source_column_dimensions_by_record_id( + record_sets: list[SourceRecordSetSpec], +) -> dict[str, dict[str, Any]]: + """Index explicit wide-column dimensions without changing fact payloads.""" + return { + f"{record_set.source_record_id_prefix}.{row.value_id}.{measure.measure_id}": ( + dict(measure.source_column_dimensions) + ) + for record_set in record_sets + for row in record_set.rows + for measure in record_set.measures + if measure.source_column_dimensions + } + + def _constraint_evidenced_by_source_cells( cells: list[SourceCell], constraint: Any, diff --git a/db/data/dfe/funded_early_education_childcare_2026/headline_figures_feeac_2011_2026.csv b/db/data/dfe/funded_early_education_childcare_2026/headline_figures_feeac_2011_2026.csv new file mode 100644 index 0000000..c58e46b --- /dev/null +++ b/db/data/dfe/funded_early_education_childcare_2026/headline_figures_feeac_2011_2026.csv @@ -0,0 +1,225 @@ +time_period,time_identifier,geographic_level,country_code,country_name,entitlement_type,age,registered_children_count,registered_children_nursery_count,registered_children_reception_count,eligible_children_count,eligible_children_nursery_count,eligible_children_universal_credit_count,eligible_children_legacy_benefit_count,registered_eligible_children_percent,registered_eligible_children_nursery_percent,all_children_count,registered_all_children_percent,providers_count,state_funded_schools_count,private_and_voluntary_providers_count,independent_schools_count,local_authority_day_nurseries_count,childminders_count,state_funded_governor_run_count,other_private_voluntary_and_independent_count,staff_count +2026,Reporting year,National,E92000001,England,Total,Total,1714427,x,x,z,x,z,z,z,x,2539433.484,67.512184,55340,16704,17322,795,401,19185,669,264,286675 +2026,Reporting year,National,E92000001,England,Working parents,Total,890483,x,x,1052000,x,z,z,85,x,2539433.484,35.066207,45822,7849,17161,547,382,18995,638,250,x +2026,Reporting year,National,E92000001,England,Working parents,9 to 11 months,30679,x,x,66000,x,z,z,46,x,135865,22.580503,13164,57,8406,83,172,4342,30,74,x +2026,Reporting year,National,E92000001,England,Working parents,1 year,210825,x,x,278000,x,z,z,76,x,571240.0346,36.906552,27768,153,11989,139,236,15070,59,122,x +2026,Reporting year,National,E92000001,England,Working parents,2 years,260238,x,x,283000,x,z,z,92,x,582143.2742,44.703428,34196,1984,16486,346,324,14499,340,217,x +2026,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,501742,x,x,627000,x,z,z,80,x,1289248.309,38.917406,38421,1988,16675,349,344,18486,360,219,x +2026,Reporting year,National,E92000001,England,Working parents,3 years,278490,x,x,297000,x,z,z,94,x,610427.2066,45.622147,35471,7605,16306,436,325,10007,564,228,x +2026,Reporting year,National,E92000001,England,Working parents,4 years,110251,x,x,128000,x,z,z,86,x,639757.9688,17.233236,26974,7188,14419,451,276,3936,515,189,x +2026,Reporting year,National,E92000001,England,Working parents,3 to 4 years,388741,x,x,425000,x,z,z,91,x,1250185.175,31.094674,37184,7809,16457,491,330,11286,579,232,x +2026,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,85629,x,x,119598,x,116929,2669,71.597351,x,582143.2742,14.709266,18786,2462,12678,139,263,2849,237,158,x +2026,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,85629,x,x,119598,x,116929,2669,71.597351,x,582143.2742,14.709266,18786,2462,12678,139,263,2849,237,158,x +2026,Reporting year,National,E92000001,England,Universal,Total,1127056,751322,375718,1250185.175,874467.1754,z,z,90.151125,85.91769,1250185.175,90.151125,46782,16703,16897,782,358,11178,611,253,x +2026,Reporting year,National,E92000001,England,Universal,3 years,535220,535209,5,610427.2066,610422.2066,z,z,87.679578,87.678494,610427.2066,87.679578,37869,9000,16856,703,356,10097,606,251,x +2026,Reporting year,National,E92000001,England,Universal,4 years,591836,216113,375713,639757.9688,264044.9688,z,z,92.50936,81.847043,639757.9688,92.50936,38360,16697,15952,772,326,3827,560,226,x +2025,Reporting year,National,E92000001,England,Total,Total,1717085,x,x,z,x,z,z,z,x,2594300.989,66.186807,55020,16757,17792,785,278,18546,840,22,272491 +2025,Reporting year,National,E92000001,England,Working parents,Total,845741,x,x,1082000,x,z,z,78,x,2594300.989,32.599957,44827,7366,17572,538,262,18267,803,19,x +2025,Reporting year,National,E92000001,England,Working parents,9 to 11 months,29155,x,x,67000,x,z,z,44,x,136292,21.391571,12424,32,8045,73,91,4158,25,0,x +2025,Reporting year,National,E92000001,England,Working parents,1 year,195104,x,x,283000,x,z,z,69,x,579283.9556,33.680201,26239,106,11685,113,148,14130,53,4,x +2025,Reporting year,National,E92000001,England,Working parents,2 years,242453,x,x,297000,x,z,z,82,x,608555.1105,39.840763,32434,1338,16715,327,207,13426,407,14,x +2025,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,466712,x,x,647000,x,z,z,72,x,1324131.066,35.246662,36864,1344,16937,328,223,17603,415,14,x +2025,Reporting year,National,E92000001,England,Working parents,3 years,278640,x,x,312000,x,z,z,89,x,638657.5107,43.629018,35307,7167,16527,419,221,10218,740,15,x +2025,Reporting year,National,E92000001,England,Working parents,4 years,100389,x,x,123000,x,z,z,81,x,631512.4121,15.8966,26010,6714,14382,415,191,3638,656,14,x +2025,Reporting year,National,E92000001,England,Working parents,3 to 4 years,379029,x,x,435000,x,z,z,87,x,1270169.923,29.840811,36832,7333,16730,468,226,11306,753,16,x +2025,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,95031,x,x,145824,x,140277,5547,65.168285,x,608555.1105,15.615841,19008,2129,13418,134,213,2808,299,7,x +2025,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,95031,x,x,145824,x,140277,5547,65.168285,x,608555.1105,15.615841,19008,2129,13418,134,213,2808,299,7,x +2025,Reporting year,National,E92000001,England,Universal,Total,1155342,775994,379311,1270169.923,890858.9228,z,z,90.959641,87.106272,1270169.923,90.959641,47337,16756,17379,779,252,11351,798,22,x +2025,Reporting year,National,E92000001,England,Universal,3 years,565961,565954,3,638657.5107,638654.5107,z,z,88.617293,88.616614,638657.5107,88.617293,38253,8668,17335,716,251,10477,789,17,x +2025,Reporting year,National,E92000001,England,Universal,4 years,589381,210040,379308,631512.4121,252204.4121,z,z,93.32849,83.281652,631512.4121,93.32849,38365,16750,16364,769,234,3495,737,16,x +2024,Reporting year,National,E92000001,England,Total,Total,1285393,x,x,z,x,z,z,z,x,1900554.742,67.632517,49194,16782,17511,807,277,12943,818,56,254285 +2024,Reporting year,National,E92000001,England,Working parents,Total,361790,x,x,430000,x,z,z,84,x,1270734.935,28.470926,35584,7065,16485,443,223,10575,740,53,x +2024,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2024,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2024,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2024,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2024,Reporting year,National,E92000001,England,Working parents,3 years,259103,x,x,305000,x,z,z,85,x,623155.0534,41.579218,33874,6900,16232,381,219,9362,729,51,x +2024,Reporting year,National,E92000001,England,Working parents,4 years,102687,x,x,125000,x,z,z,82,x,647579.8812,15.85704,25979,6522,14488,403,194,3670,659,43,x +2024,Reporting year,National,E92000001,England,Working parents,3 to 4 years,361790,x,x,430000,x,z,z,84,x,1270734.935,28.470926,35584,7065,16485,443,223,10575,740,53,x +2024,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,115852,x,x,154957,x,135850,19107,74.763967,x,629819.8071,18.394468,20613,1880,14226,123,222,3808,314,40,x +2024,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,115852,x,x,154957,x,135850,19107,74.763967,x,629819.8071,18.394468,20613,1880,14226,123,222,3808,314,40,x +2024,Reporting year,National,E92000001,England,Universal,Total,1169541,778327,391177,1270734.935,879557.9345,z,z,92.036582,88.490703,1270734.935,92.036582,46348,16782,17299,805,262,10364,784,52,x +2024,Reporting year,National,E92000001,England,Universal,3 years,559825,559813,7,623155.0534,623148.0534,z,z,89.837192,89.836275,623155.0534,89.837192,36997,8545,17248,730,259,9387,779,49,x +2024,Reporting year,National,E92000001,England,Universal,4 years,609716,218514,391170,647579.8812,256409.8812,z,z,94.153018,85.220585,647579.8812,94.153018,38409,16772,16378,792,237,3437,743,50,x +2023,Reporting year,National,E92000001,England,Total,Total,1320242,x,x,z,x,z,z,z,x,1876239.346,70.366396,49898,16794,17904,817,292,13173,889,29,250662 +2023,Reporting year,National,E92000001,England,Working parents,Total,362982,x,x,452000,x,z,z,80,x,1269736.277,28.587196,35753,6769,16728,443,229,10766,794,24,x +2023,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2023,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2023,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2023,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2023,Reporting year,National,E92000001,England,Working parents,3 years,260586,x,x,327000,x,z,z,80,x,631107.4063,41.290278,33965,6622,16488,383,227,9437,784,24,x +2023,Reporting year,National,E92000001,England,Working parents,4 years,102396,x,x,126000,x,z,z,81,x,638628.8712,16.033725,25997,6204,14632,396,203,3847,694,21,x +2023,Reporting year,National,E92000001,England,Working parents,3 to 4 years,362982,x,x,452000,x,z,z,80,x,1269736.277,28.587196,35753,6769,16728,443,229,10766,794,24,x +2023,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,124211,x,x,167976,x,141942,26034,73.945683,x,606503.0684,20.479863,21064,1905,14615,130,223,3816,355,20,x +2023,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,124211,x,x,167976,x,141942,26034,73.945683,x,606503.0684,20.479863,21064,1905,14615,130,223,3816,355,20,x +2023,Reporting year,National,E92000001,England,Universal,Total,1196031,800129,395860,1269736.277,873876.2775,z,z,94.195229,91.560902,1269736.277,94.195229,46719,16794,17676,815,275,10289,843,27,x +2023,Reporting year,National,E92000001,England,Universal,3 years,576886,576871,11,631107.4063,631096.4063,z,z,91.40853,91.407746,631107.4063,91.40853,37201,8475,17621,735,275,9232,836,27,x +2023,Reporting year,National,E92000001,England,Universal,4 years,619145,223258,395849,638628.8712,242779.8712,z,z,96.949109,91.959024,638628.8712,96.949109,38829,16782,16712,810,250,3453,799,23,x +2022,Reporting year,National,E92000001,England,Total,Total,1347644,x,x,z,x,z,z,z,x,1879259.827,71.711425,51323,16809,18526,806,230,13919,942,91,249263 +2022,Reporting year,National,E92000001,England,Working parents,Total,348126,x,x,425000,x,z,z,82,x,1263562.166,27.551157,36346,6428,17125,417,178,11280,841,77,x +2022,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2022,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2022,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2022,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2022,Reporting year,National,E92000001,England,Working parents,3 years,249388,x,x,308000,x,z,z,81,x,623763.8674,39.981155,34351,6282,16801,362,175,9834,821,76,x +2022,Reporting year,National,E92000001,England,Working parents,4 years,98738,x,x,117000,x,z,z,84,x,639798.2989,15.432676,26049,5897,14758,378,154,4049,748,65,x +2022,Reporting year,National,E92000001,England,Working parents,3 to 4 years,348126,x,x,425000,x,z,z,82,x,1263562.166,27.551157,36346,6428,17125,417,178,11280,841,77,x +2022,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,135410,x,x,188318,x,148298,40020,71.904969,x,615697.6604,21.992937,22136,1897,15274,118,194,4180,399,74,x +2022,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,135410,x,x,188318,x,148298,40020,71.904969,x,615697.6604,21.992937,22136,1897,15274,118,194,4180,399,74,x +2022,Reporting year,National,E92000001,England,Universal,Total,1212234,809512,402694,1263562.166,860868.1663,z,z,95.93782,94.034375,1263562.166,95.93782,47720,16809,18245,805,214,10658,903,86,x +2022,Reporting year,National,E92000001,England,Universal,3 years,582295,582288,6,623763.8674,623757.8674,z,z,93.351832,93.351608,623763.8674,93.351832,37970,8346,18175,723,214,9530,897,85,x +2022,Reporting year,National,E92000001,England,Universal,4 years,629939,227224,402688,639798.2989,237110.2989,z,z,98.458999,95.830506,639798.2989,98.458999,39488,16804,17172,799,192,3573,869,79,x +2021,Reporting year,National,E92000001,England,Total,Total,1336534,x,x,z,x,z,z,z,x,1905083.012,70.156208,52445,16789,18653,809,183,14816,889,306,243710 +2021,Reporting year,National,E92000001,England,Working parents,Total,328662,x,x,432000,x,z,z,76,x,1286697.826,25.54306,36340,6021,16931,394,137,11839,762,256,x +2021,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2021,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2021,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2021,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2021,Reporting year,National,E92000001,England,Working parents,3 years,234996,x,x,313000,x,z,z,75,x,634638.5903,37.028319,34031,5864,16589,336,135,10125,744,238,x +2021,Reporting year,National,E92000001,England,Working parents,4 years,93666,x,x,119000,x,z,z,79,x,652059.2361,14.364646,25628,5471,14478,364,111,4362,662,180,x +2021,Reporting year,National,E92000001,England,Working parents,3 to 4 years,328662,x,x,432000,x,z,z,76,x,1286697.826,25.54306,36340,6021,16931,394,137,11839,762,256,x +2021,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,124543,x,x,201562,x,136979,64583,61.788928,x,618385.1859,20.140036,21922,1742,15078,118,168,4245,385,186,x +2021,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,124543,x,x,201562,x,136979,64583,61.788928,x,618385.1859,20.140036,21922,1742,15078,118,168,4245,385,186,x +2021,Reporting year,National,E92000001,England,Universal,Total,1211991,800108,411844,1286697.826,874853.8264,z,z,94.193911,91.456193,1286697.826,94.193911,48839,16789,18392,807,171,11574,836,270,x +2021,Reporting year,National,E92000001,England,Universal,3 years,574845,574830,11,634638.5903,634627.5903,z,z,90.578324,90.577531,634638.5903,90.578324,38760,8220,18316,727,170,10235,831,261,x +2021,Reporting year,National,E92000001,England,Universal,4 years,637146,225278,411833,652059.2361,240226.2361,z,z,97.712902,93.777434,652059.2361,97.712902,39914,16784,17204,801,149,3997,788,191,x +2020,Reporting year,National,E92000001,England,Total,Total,1414983,x,x,z,x,z,z,z,x,1948051.146,72.635824,53934,16788,18822,808,329,15898,403,886,256379 +2020,Reporting year,National,E92000001,England,Working parents,Total,345704,x,x,440000,x,z,z,79,x,1310666.668,26.376195,37597,5801,17176,391,250,12884,354,741,x +2020,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2020,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2020,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2020,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2020,Reporting year,National,E92000001,England,Working parents,3 years,248399,x,x,321000,x,z,z,77,x,653992.3445,37.981943,35274,5676,16857,337,238,11118,347,701,x +2020,Reporting year,National,E92000001,England,Working parents,4 years,97305,x,x,119000,x,z,z,82,x,656674.323,14.817848,26316,5294,14745,354,204,4784,300,635,x +2020,Reporting year,National,E92000001,England,Working parents,3 to 4 years,345704,x,x,440000,x,z,z,79,x,1310666.668,26.376195,37597,5801,17176,391,250,12884,354,741,x +2020,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,143439,x,x,207392,x,87140,120252,69.163227,x,637384.4785,22.504313,22572,1734,15375,118,259,4403,215,468,x +2020,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,143439,x,x,207392,x,87140,120252,69.163227,x,637384.4785,22.504313,22572,1734,15375,118,259,4403,215,468,x +2020,Reporting year,National,E92000001,England,Universal,Total,1271544,857137,414352,1310666.668,896314.6676,z,z,97.015056,95.629028,1310666.668,97.015056,49397,16788,18502,807,288,11809,382,821,x +2020,Reporting year,National,E92000001,England,Universal,3 years,621351,621318,19,653992.3445,653973.3445,z,z,95.00891,95.006625,653992.3445,95.00891,39325,8170,18425,737,287,10512,381,813,x +2020,Reporting year,National,E92000001,England,Universal,4 years,650193,235819,414333,656674.323,242341.323,z,z,99.013008,97.308621,656674.323,99.013008,40066,16786,17254,796,256,3859,356,759,x +2019,Reporting year,National,E92000001,England,Total,Total,1425888,x,x,z,x,z,z,z,x,1971665.94,72.318945,53832,16760,19258,832,460,15661,x,861,261919 +2019,Reporting year,National,E92000001,England,Working parents,Total,328127,x,x,425000,x,z,z,77,x,1315386.334,24.945295,36561,5329,17220,385,366,12562,x,699,x +2019,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2019,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2019,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2019,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2019,Reporting year,National,E92000001,England,Working parents,3 years,236087,x,x,311000,x,z,z,76,x,658455.1615,35.854681,34210,5201,16856,319,352,10806,x,676,x +2019,Reporting year,National,E92000001,England,Working parents,4 years,92040,x,x,114000,x,z,z,81,x,656931.1728,14.0106,25550,4892,14657,344,318,4762,x,577,x +2019,Reporting year,National,E92000001,England,Working parents,3 to 4 years,328127,x,x,425000,x,z,z,77,x,1315386.334,24.945295,36561,5329,17220,385,366,12562,x,699,x +2019,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,148751,x,x,219316,x,32867,186449,67.824965,x,656279.6061,22.665797,22744,1662,15741,127,347,4447,x,420,x +2019,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,148751,x,x,219316,x,32867,186449,67.824965,x,656279.6061,22.665797,22744,1662,15741,127,347,4447,x,420,x +2019,Reporting year,National,E92000001,England,Universal,Total,1277137,861736,415343,1315386.334,900043.3344,z,z,97.09216,95.743834,1315386.334,97.09216,48954,16760,18914,830,407,11260,x,783,x +2019,Reporting year,National,E92000001,England,Universal,3 years,625658,625602,42,658455.1615,658413.1615,z,z,95.019074,95.01663,658455.1615,95.019074,38837,8080,18829,753,406,9994,x,775,x +2019,Reporting year,National,E92000001,England,Universal,4 years,651479,236134,415301,656931.1728,241630.1728,z,z,99.170054,97.725378,656931.1728,99.170054,39901,16753,17602,813,369,3673,x,691,x +2018,Reporting year,National,E92000001,England,Total,Total,1439594,x,x,z,x,z,z,z,x,1982394.943,72.61893,53582,16723,19290,813,425,15083,x,1248,254361 +2018,Reporting year,National,E92000001,England,Working parents,Total,296924,x,x,405000,x,z,z,73,x,1322233.551,22.456245,34915,4679,16869,339,311,11741,x,976,x +2018,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2018,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2018,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2018,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2018,Reporting year,National,E92000001,England,Working parents,3 years,216096,x,x,295000,x,z,z,73,x,658521.7711,32.815316,32801,4555,16501,290,307,10211,x,937,x +2018,Reporting year,National,E92000001,England,Working parents,4 years,80828,x,x,110000,x,z,z,74,x,663711.7798,12.178178,23646,4220,14046,292,260,4095,x,733,x +2018,Reporting year,National,E92000001,England,Working parents,3 to 4 years,296924,x,x,405000,x,z,z,73,x,1322233.551,22.456245,34915,4679,16869,339,311,11741,x,976,x +2018,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,154962,x,x,215879,x,0,215879,71.781878,x,660161.3925,23.473351,22828,1601,15761,125,342,4299,x,700,x +2018,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,154962,x,x,215879,x,0,215879,71.781878,x,660161.3925,23.473351,22828,1601,15761,125,342,4299,x,700,x +2018,Reporting year,National,E92000001,England,Universal,Total,1284632,865402,419176,1322233.551,903057.5508,z,z,97.15621,95.830216,1322233.551,97.15621,48529,16722,18927,810,382,10551,x,1137,x +2018,Reporting year,National,E92000001,England,Universal,3 years,628503,628476,16,658521.7711,658505.7711,z,z,95.441491,95.43971,658521.7711,95.441491,38621,8037,18853,732,382,9491,x,1126,x +2018,Reporting year,National,E92000001,England,Universal,4 years,656129,236926,419160,663711.7798,244551.7798,z,z,98.857519,96.881732,663711.7798,98.857519,39434,16713,17465,798,336,3143,x,979,x +2017,Reporting year,National,E92000001,England,Total,Total,1480907,x,x,z,x,z,z,z,x,2021847.78,73.245227,x,x,x,x,x,x,x,x,x +2017,Reporting year,National,E92000001,England,Working parents,Total,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2017,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2017,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2017,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2017,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2017,Reporting year,National,E92000001,England,Working parents,3 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2017,Reporting year,National,E92000001,England,Working parents,4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2017,Reporting year,National,E92000001,England,Working parents,3 to 4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2017,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,163249,x,x,230892,x,0,230892,70.703619,x,660228.9254,24.726121,x,x,x,x,x,x,x,x,x +2017,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,163249,x,x,230892,x,0,230892,70.703619,x,660228.9254,24.726121,x,x,x,x,x,x,x,x,x +2017,Reporting year,National,E92000001,England,Universal,Total,1317658,x,x,1361618.855,x,z,z,96.771427,x,1361618.855,96.771427,x,x,x,x,x,x,x,x,x +2017,Reporting year,National,E92000001,England,Universal,3 years,632331,x,x,665008.0522,x,z,z,95.086217,x,665008.0522,95.086217,x,x,x,x,x,x,x,x,x +2017,Reporting year,National,E92000001,England,Universal,4 years,685327,x,x,696610.8024,x,z,z,98.380186,x,696610.8024,98.380186,x,x,x,x,x,x,x,x,x +2016,Reporting year,National,E92000001,England,Total,Total,1506355,x,x,z,x,z,z,z,x,2052444.766,73.393205,x,x,x,x,x,x,x,x,x +2016,Reporting year,National,E92000001,England,Working parents,Total,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2016,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2016,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2016,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2016,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2016,Reporting year,National,E92000001,England,Working parents,3 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2016,Reporting year,National,E92000001,England,Working parents,4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2016,Reporting year,National,E92000001,England,Working parents,3 to 4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2016,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,166924,x,x,246085,x,0,246085,67.831847,x,665277.9188,25.090867,x,x,x,x,x,x,x,x,x +2016,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,166924,x,x,246085,x,0,246085,67.831847,x,665277.9188,25.090867,x,x,x,x,x,x,x,x,x +2016,Reporting year,National,E92000001,England,Universal,Total,1339431,x,x,1387166.847,x,z,z,96.558752,x,1387166.847,96.558752,x,x,x,x,x,x,x,x,x +2016,Reporting year,National,E92000001,England,Universal,3 years,660428,x,x,696745.7615,x,z,z,94.787516,x,696745.7615,94.787516,x,x,x,x,x,x,x,x,x +2016,Reporting year,National,E92000001,England,Universal,4 years,679003,x,x,690421.0859,x,z,z,98.346214,x,690421.0859,98.346214,x,x,x,x,x,x,x,x,x +2015,Reporting year,National,E92000001,England,Total,Total,1478933,x,x,z,x,z,z,z,x,2072485.842,71.360343,x,x,x,x,x,x,x,x,x +2015,Reporting year,National,E92000001,England,Working parents,Total,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2015,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2015,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2015,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2015,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2015,Reporting year,National,E92000001,England,Working parents,3 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2015,Reporting year,National,E92000001,England,Working parents,4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2015,Reporting year,National,E92000001,England,Working parents,3 to 4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2015,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,157036,x,x,269777,x,0,269777,58.209558,x,695861.8141,22.567124,x,x,x,x,x,x,x,x,x +2015,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,157036,x,x,269777,x,0,269777,58.209558,x,695861.8141,22.567124,x,x,x,x,x,x,x,x,x +2015,Reporting year,National,E92000001,England,Universal,Total,1321897,x,x,1376624.028,x,z,z,96.024548,x,1376624.028,96.024548,x,x,x,x,x,x,x,x,x +2015,Reporting year,National,E92000001,England,Universal,3 years,646674,x,x,688946.6265,x,z,z,93.864165,x,688946.6265,93.864165,x,x,x,x,x,x,x,x,x +2015,Reporting year,National,E92000001,England,Universal,4 years,675223,x,x,687677.4015,x,z,z,98.188918,x,687677.4015,98.188918,x,x,x,x,x,x,x,x,x +2014,Reporting year,National,E92000001,England,Total,Total,1299908,x,x,z,x,z,z,z,x,1357281.491,95.772911,x,x,x,x,x,x,x,x,x +2014,Reporting year,National,E92000001,England,Working parents,Total,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2014,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2014,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2014,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2014,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2014,Reporting year,National,E92000001,England,Working parents,3 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2014,Reporting year,National,E92000001,England,Working parents,4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2014,Reporting year,National,E92000001,England,Working parents,3 to 4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2014,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2014,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2014,Reporting year,National,E92000001,England,Universal,Total,1299908,x,x,1357281.491,x,z,z,95.772911,x,1357281.491,95.772911,x,x,x,x,x,x,x,x,x +2014,Reporting year,National,E92000001,England,Universal,3 years,641231,x,x,685217.002,x,z,z,93.580719,x,685217.002,93.580719,x,x,x,x,x,x,x,x,x +2014,Reporting year,National,E92000001,England,Universal,4 years,658677,x,x,672064.4885,x,z,z,98.008005,x,672064.4885,98.008005,x,x,x,x,x,x,x,x,x +2013,Reporting year,National,E92000001,England,Total,Total,1283497,x,x,z,x,z,z,z,x,1342766.429,95.586021,x,x,x,x,x,x,x,x,x +2013,Reporting year,National,E92000001,England,Working parents,Total,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2013,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2013,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2013,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2013,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2013,Reporting year,National,E92000001,England,Working parents,3 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2013,Reporting year,National,E92000001,England,Working parents,4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2013,Reporting year,National,E92000001,England,Working parents,3 to 4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2013,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2013,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2013,Reporting year,National,E92000001,England,Universal,Total,1283497,x,x,1342766.429,x,z,z,95.586021,x,1342766.429,95.586021,x,x,x,x,x,x,x,x,x +2013,Reporting year,National,E92000001,England,Universal,3 years,625307,x,x,669351.4219,x,z,z,93.419836,x,669351.4219,93.419836,x,x,x,x,x,x,x,x,x +2013,Reporting year,National,E92000001,England,Universal,4 years,658190,x,x,673415.0071,x,z,z,97.739135,x,673415.0071,97.739135,x,x,x,x,x,x,x,x,x +2012,Reporting year,National,E92000001,England,Total,Total,1264416,x,x,z,x,z,z,z,x,1328609.861,95.168344,x,x,x,x,x,x,x,x,x +2012,Reporting year,National,E92000001,England,Working parents,Total,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2012,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2012,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2012,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2012,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2012,Reporting year,National,E92000001,England,Working parents,3 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2012,Reporting year,National,E92000001,England,Working parents,4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2012,Reporting year,National,E92000001,England,Working parents,3 to 4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2012,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2012,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2012,Reporting year,National,E92000001,England,Universal,Total,1264416,x,x,1328609.861,x,z,z,95.168344,x,1328609.861,95.168344,x,x,x,x,x,x,x,x,x +2012,Reporting year,National,E92000001,England,Universal,3 years,625442,x,x,670729.0221,x,z,z,93.24809,x,670729.0221,93.24809,x,x,x,x,x,x,x,x,x +2012,Reporting year,National,E92000001,England,Universal,4 years,638974,x,x,657880.8393,x,z,z,97.1261,x,657880.8393,97.1261,x,x,x,x,x,x,x,x,x +2011,Reporting year,National,E92000001,England,Total,Total,1224465,x,x,z,x,z,z,z,x,z,z,x,x,x,x,x,x,x,x,x +2011,Reporting year,National,E92000001,England,Working parents,Total,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2011,Reporting year,National,E92000001,England,Working parents,9 to 11 months,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2011,Reporting year,National,E92000001,England,Working parents,1 year,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2011,Reporting year,National,E92000001,England,Working parents,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2011,Reporting year,National,E92000001,England,Working parents,9 months to 2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2011,Reporting year,National,E92000001,England,Working parents,3 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2011,Reporting year,National,E92000001,England,Working parents,4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2011,Reporting year,National,E92000001,England,Working parents,3 to 4 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2011,Reporting year,National,E92000001,England,Early learning for 2-year-olds,Total,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2011,Reporting year,National,E92000001,England,Early learning for 2-year-olds,2 years,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z,z +2011,Reporting year,National,E92000001,England,Universal,Total,1224465,x,x,x,x,z,z,x,x,x,x,x,x,x,x,x,x,x,x,x +2011,Reporting year,National,E92000001,England,Universal,3 years,604315,x,x,x,x,z,z,x,x,x,x,x,x,x,x,x,x,x,x,x +2011,Reporting year,National,E92000001,England,Universal,4 years,620150,x,x,x,x,z,z,x,x,x,x,x,x,x,x,x,x,x,x,x diff --git a/db/data/dfe/funded_early_education_childcare_2026/manifest.yaml b/db/data/dfe/funded_early_education_childcare_2026/manifest.yaml new file mode 100644 index 0000000..d83b62f --- /dev/null +++ b/db/data/dfe/funded_early_education_childcare_2026/manifest.yaml @@ -0,0 +1,18 @@ +source_id: dfe +package_id: dfe-funded-early-education-childcare-2026 +dataset: dfe_dfe-funded-early-education-childcare-2026 +source_page: https://explore-education-statistics.service.gov.uk/find-statistics/funded-early-education-and-childcare/2026 +table: Funded early education and childcare 2026, Headline figures +files: + 2026: + filename: headline_figures_feeac_2011_2026.csv + source_url: https://api.education.gov.uk/statistics/v1/data-sets/019efe34-f746-72db-a258-06676f74ce09/csv + sha256: cefdb06593016446d215433cf31f80649b8ce18f89e454a5ad7931b0ab32d72d + size_bytes: 33467 + fetched_at: '2026-09-01T13:03:30+00:00' + storage: + r2: + provider: r2 + bucket: ledger-raw + key: raw/dfe/dfe-funded-early-education-childcare-2026/2026/cefdb06593016446d215433cf31f80649b8ce18f89e454a5ad7931b0ab32d72d/headline_figures_feeac_2011_2026.csv + uri: r2://ledger-raw/raw/dfe/dfe-funded-early-education-childcare-2026/2026/cefdb06593016446d215433cf31f80649b8ce18f89e454a5ad7931b0ab32d72d/headline_figures_feeac_2011_2026.csv diff --git a/db/data/hmrc/tax_free_childcare_march_2026/Tables_and_Statistics_March_2026.ods b/db/data/hmrc/tax_free_childcare_march_2026/Tables_and_Statistics_March_2026.ods new file mode 100644 index 0000000..74fe5c3 Binary files /dev/null and b/db/data/hmrc/tax_free_childcare_march_2026/Tables_and_Statistics_March_2026.ods differ diff --git a/db/data/hmrc/tax_free_childcare_march_2026/manifest.yaml b/db/data/hmrc/tax_free_childcare_march_2026/manifest.yaml new file mode 100644 index 0000000..8af06b5 --- /dev/null +++ b/db/data/hmrc/tax_free_childcare_march_2026/manifest.yaml @@ -0,0 +1,19 @@ +source_id: hmrc +package_id: hmrc-tax-free-childcare-march-2026 +dataset: hmrc_hmrc-tax-free-childcare-march-2026 +source_page: https://www.gov.uk/government/statistics/tax-free-childcare-statistics-march-2026 +table: 'Tax-Free Childcare Statistics March 2026, Table 2: Numbers of Children with Open and Used Tax-Free + Childcare Accounts and Government Top-up' +files: + 2026: + filename: Tables_and_Statistics_March_2026.ods + source_url: https://assets.publishing.service.gov.uk/media/6a0dcb07faac4bc0b0e906ef/Tables_and_Statistics_March_2026.ods + sha256: c2a8e82a7d1e6c85cbe119ffe0a51e692fac3e5014a37f845484dee710e7a29d + size_bytes: 321791 + fetched_at: '2026-09-01T13:03:30+00:00' + storage: + r2: + provider: r2 + bucket: ledger-raw + key: raw/hmrc/hmrc-tax-free-childcare-march-2026/2026/c2a8e82a7d1e6c85cbe119ffe0a51e692fac3e5014a37f845484dee710e7a29d/Tables_and_Statistics_March_2026.ods + uri: r2://ledger-raw/raw/hmrc/hmrc-tax-free-childcare-march-2026/2026/c2a8e82a7d1e6c85cbe119ffe0a51e692fac3e5014a37f845484dee710e7a29d/Tables_and_Statistics_March_2026.ods diff --git a/docs/pe-uk-source-checklist.md b/docs/pe-uk-source-checklist.md index 300d16b..0c82efb 100644 --- a/docs/pe-uk-source-checklist.md +++ b/docs/pe-uk-source-checklist.md @@ -67,6 +67,7 @@ cannot be obtained. Nothing in uk-data is absent from this table. | UC claimants by children ([`dwp.py`](https://github.com/PolicyEngine/policyengine-uk-data/blob/ebf733c/policyengine_uk_data/targets/sources/dwp.py)) | 5 `dwp/uc/claimants_with_{n}_children` | **ported** | `dwp-uc-households-children-april-december-2025` (72 facts, Stat-Xplore) | [#141](https://github.com/PolicyEngine/chronicle/pull/141), [#187](https://github.com/PolicyEngine/chronicle/issues/187) | Monthly history now covers the April–December 2025 caseload averaging window. Digit categories carry integer `number_of_children` constraints; `5 or more` and the unknown tail stay categorical (uk-data merged the tail into its `5+`). Raw revised publisher cells are preserved. | | UC claimants by family type ([`dwp.py`](https://github.com/PolicyEngine/policyengine-uk-data/blob/ebf733c/policyengine_uk_data/targets/sources/dwp.py)) | 4 `dwp/uc/claimants_{family_type}` | **ported** | `dwp-uc-households-family-type-april-december-2025` (45 facts, Stat-Xplore) | [#141](https://github.com/PolicyEngine/chronicle/pull/141), [#187](https://github.com/PolicyEngine/chronicle/issues/187) | Monthly history now covers the April–December 2025 caseload averaging window. Raw publisher counts only — uk-data's `undercount_relative` inflation is **excluded (computed)** and stays populace-side. | | UC element caseloads | Childcare, housing, LCWRA and carer benefit units | **ported** | `dwp-uc-childcare-element-march-2021-august-2025` (54 facts) plus three April–December 2025 Stat-Xplore entitlement packages (9 facts each) | [#187](https://github.com/PolicyEngine/chronicle/issues/187) | DWP's “household” is normalized to the UC benefit unit. Housing is a publisher-side grouped API cell across social, private and other tenure categories; no Chronicle-side summation or annual averaging is introduced. Coverage is Great Britain (`K03000001`), matching the source. | +| Childcare programme anchors | Tax-Free Childcare annual top-up and annual/monthly child activity; funded early-education registered and eligible child measures | **ported; downstream activity and mutually exclusive target arithmetic excluded (computed)** | `hmrc-tax-free-childcare-march-2026` (126 facts: 108 monthly used-account child counts, 9 annual-unique child counts, 9 annual top-up flows); `dfe-funded-early-education-childcare-2026` (770 national child headline facts, 2011–2026) | [#219](https://github.com/PolicyEngine/chronicle/issues/219) | **Publisher cells only.** HMRC's April-2025 used-account definition break is an exact filter and constraint on every monthly fact; consumers combining months must select one `definition_regime`. Annual figures use the revised treatment from FY2024-25. DfE facts are third-week-of-January England stocks: raw entitlement and age labels are row constraints, while registration/eligibility and nursery/reception identities use explicit guarded source-column dimension declarations rather than column-name inference. Total and component columns have distinct concepts, and the release vintage is pinned in provenance. The TFC duration proxy, `379,029 + 242,453`, and `778,327 - 361,790` remain consumer computations; overlapping universal and working-parent universes are not reconciled. | | Scotland UC households, child under 1 ([`dwp.py`](https://github.com/PolicyEngine/policyengine-uk-data/blob/ebf733c/policyengine_uk_data/targets/sources/dwp.py)) | 1 `dwp/scotland_uc_households_child_under_1` (14,000) | **ported** | `dwp-uc-scotland-youngest-child-may-2025` (23 facts, single year of age, Stat-Xplore) | [#141](https://github.com/PolicyEngine/chronicle/pull/141) | The age-0 row (14,412) is the precise value behind uk-data's rounded 14,000. Single-year cells differ from the published 0–4 band by 4 households — Stat-Xplore disclosure-control rounding, both publisher-emitted. | | Land values ([`_land.py`](https://github.com/PolicyEngine/policyengine-uk-data/blob/ebf733c/policyengine_uk_data/targets/sources/_land.py), [`ons_land_values.py`](https://github.com/PolicyEngine/policyengine-uk-data/blob/ebf733c/policyengine_uk_data/targets/sources/ons_land_values.py), [`mhclg_regional_land.py`](https://github.com/PolicyEngine/policyengine-uk-data/blob/ebf733c/policyengine_uk_data/targets/sources/mhclg_regional_land.py)) | `ons/{household,corporate,}_land_value` + 11 regional | **ported** | `ons-national-balance-sheet-land-2025` (90 facts: Land AN.211 × total/households/NFCs × 1995–2024) | [#141](https://github.com/PolicyEngine/chronicle/pull/141) | **Re-pinned to the dataset, vintage partially revised.** From the [2025-edition NBS reference tables](https://www.ons.gov.uk/economy/nationalaccounts/uksectoraccounts/datasets/thenationalbalancesheetestimates) (E44R/E44N/E43B). uk-data's totals match exactly for 2021–2023; its 2024 (£7,100,000m) approximated the published £7,117,771m; its 2020 household/corporate split matches no series in this edition (earlier vintage, since revised). **Excluded (computed):** flat-fills, the fixed 2020 share split, and the regional split over the unattributed prices×dwellings CSV. | | Salary-sacrifice headcounts ([`obr.py`](https://github.com/PolicyEngine/policyengine-uk-data/blob/ebf733c/policyengine_uk_data/targets/sources/obr.py)) | `obr/salary_sacrifice_users_{total,below_cap,above_cap}` (7.7m / 4.3m / 3.3m at 2024) | **ported** | `hmrc-salary-sacrifice-reform-2029-headcounts` (3 facts) | [#141](https://github.com/PolicyEngine/chronicle/pull/141) | **Re-pinned + relabeled.** The publisher is the [HMRC salary-sacrifice reform policy paper](https://www.gov.uk/government/publications/salary-sacrifice-reform-for-pension-contributions-effective-from-6-april-2029/salary-sacrifice-reform-for-pension-contributions) (2025-12-04), not OBR; the paper says "latest available data" with no reference period, so the 2024 keying and the ×1.024 growth extension are **excluded (computed)** populace declarations. | diff --git a/packages/dfe/funded_early_education_childcare_2026/source_package.yaml b/packages/dfe/funded_early_education_childcare_2026/source_package.yaml new file mode 100644 index 0000000..54723ff --- /dev/null +++ b/packages/dfe/funded_early_education_childcare_2026/source_package.yaml @@ -0,0 +1,65605 @@ +schema_version: ledger.source_package.v1 +package_id: dfe-funded-early-education-childcare-2026 +label: DfE funded early education and childcare 2026 national child headline series, reporting years 2011 + to 2026 +artifact: + source_name: dfe + source_table: Funded early education and childcare 2026, Headline figures + resource_package: db + resource_directory: data/dfe/funded_early_education_childcare_2026 + manifest: manifest.yaml + vintage: release_2026_api_dataset_v1_0 + extracted_at: '2026-09-01' + extraction_method: EES API data set 019efe34-f746-72db-a258-06676f74ce09 v1.0 whole-CSV row parse + parser: delimited_text_full_rows + sheet_name: headline_figures_feeac_2011_2026 + artifact_year: 2026 +record_sets: +- record_set_id: dfe.funded_childcare.release2026.year2026.total.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2026.total.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.total.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Total Total + ordinal: 0 + row_number: 2 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.total.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.total.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.total.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Total Total + ordinal: 0 + row_number: 2 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.total.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.total.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.total.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Total Total + ordinal: 0 + row_number: 2 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents Total + ordinal: 0 + row_number: 3 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents Total + ordinal: 0 + row_number: 3 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents Total + ordinal: 0 + row_number: 3 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents Total + ordinal: 0 + row_number: 3 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents Total + ordinal: 0 + row_number: 3 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.9_to_11_months.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.9_to_11_months.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.9_to_11_months.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 9 to 11 months + ordinal: 0 + row_number: 4 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 9 to 11 months + label: age + filters: + entitlement_type: Working parents + age: 9 to 11 months + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 9 to 11 months + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.9_to_11_months.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.9_to_11_months.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.9_to_11_months.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 9 to 11 months + ordinal: 0 + row_number: 4 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 9 to 11 months + label: age + filters: + entitlement_type: Working parents + age: 9 to 11 months + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 9 to 11 months + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.9_to_11_months.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.9_to_11_months.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.9_to_11_months.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 9 to 11 months + ordinal: 0 + row_number: 4 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 9 to 11 months + label: age + filters: + entitlement_type: Working parents + age: 9 to 11 months + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 9 to 11 months + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.9_to_11_months.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.9_to_11_months.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.9_to_11_months.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 9 to 11 months + ordinal: 0 + row_number: 4 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 9 to 11 months + label: age + filters: + entitlement_type: Working parents + age: 9 to 11 months + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 9 to 11 months + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.9_to_11_months.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.9_to_11_months.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.9_to_11_months.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 9 to 11 months + ordinal: 0 + row_number: 4 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 9 to 11 months + label: age + filters: + entitlement_type: Working parents + age: 9 to 11 months + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 9 to 11 months + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.1_year.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.1_year.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.1_year.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 1 year + ordinal: 0 + row_number: 5 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 1 year + label: age + filters: + entitlement_type: Working parents + age: 1 year + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 1 year + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.1_year.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.1_year.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.1_year.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 1 year + ordinal: 0 + row_number: 5 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 1 year + label: age + filters: + entitlement_type: Working parents + age: 1 year + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 1 year + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.1_year.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.1_year.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.1_year.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 1 year + ordinal: 0 + row_number: 5 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 1 year + label: age + filters: + entitlement_type: Working parents + age: 1 year + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 1 year + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.1_year.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.1_year.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.1_year.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 1 year + ordinal: 0 + row_number: 5 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 1 year + label: age + filters: + entitlement_type: Working parents + age: 1 year + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 1 year + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.1_year.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.1_year.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.1_year.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 1 year + ordinal: 0 + row_number: 5 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 1 year + label: age + filters: + entitlement_type: Working parents + age: 1 year + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 1 year + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.2_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.2_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.2_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 2 years + ordinal: 0 + row_number: 6 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Working parents + age: 2 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.2_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.2_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.2_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 2 years + ordinal: 0 + row_number: 6 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Working parents + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.2_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.2_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.2_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 2 years + ordinal: 0 + row_number: 6 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Working parents + age: 2 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.2_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.2_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.2_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 2 years + ordinal: 0 + row_number: 6 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Working parents + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.2_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.2_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.2_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 2 years + ordinal: 0 + row_number: 6 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Working parents + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.9_months_to_2_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.9_months_to_2_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.9_months_to_2_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 9 months to 2 years + ordinal: 0 + row_number: 7 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 9 months to 2 years + label: age + filters: + entitlement_type: Working parents + age: 9 months to 2 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 9 months to 2 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.9_months_to_2_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.9_months_to_2_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.9_months_to_2_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 9 months to 2 years + ordinal: 0 + row_number: 7 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 9 months to 2 years + label: age + filters: + entitlement_type: Working parents + age: 9 months to 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 9 months to 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.9_months_to_2_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.9_months_to_2_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.9_months_to_2_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 9 months to 2 years + ordinal: 0 + row_number: 7 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 9 months to 2 years + label: age + filters: + entitlement_type: Working parents + age: 9 months to 2 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 9 months to 2 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.9_months_to_2_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.9_months_to_2_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.9_months_to_2_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 9 months to 2 years + ordinal: 0 + row_number: 7 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 9 months to 2 years + label: age + filters: + entitlement_type: Working parents + age: 9 months to 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 9 months to 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.9_months_to_2_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.9_months_to_2_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.9_months_to_2_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 9 months to 2 years + ordinal: 0 + row_number: 7 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 9 months to 2 years + label: age + filters: + entitlement_type: Working parents + age: 9 months to 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 9 months to 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 3 years + ordinal: 0 + row_number: 8 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.3_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.3_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.3_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 3 years + ordinal: 0 + row_number: 8 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.3_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.3_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.3_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 3 years + ordinal: 0 + row_number: 8 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.3_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.3_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.3_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 3 years + ordinal: 0 + row_number: 8 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.3_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.3_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.3_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 3 years + ordinal: 0 + row_number: 8 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 4 years + ordinal: 0 + row_number: 9 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 4 years + ordinal: 0 + row_number: 9 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 4 years + ordinal: 0 + row_number: 9 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 4 years + ordinal: 0 + row_number: 9 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 4 years + ordinal: 0 + row_number: 9 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.3_to_4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.3_to_4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.3_to_4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 3 to 4 years + ordinal: 0 + row_number: 10 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.3_to_4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.3_to_4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.3_to_4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 3 to 4 years + ordinal: 0 + row_number: 10 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.3_to_4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.3_to_4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.3_to_4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 3 to 4 years + ordinal: 0 + row_number: 10 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.3_to_4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.3_to_4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.3_to_4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 3 to 4 years + ordinal: 0 + row_number: 10 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.working_parents.3_to_4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.working_parents.3_to_4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.working_parents.3_to_4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Working parents 3 to 4 years + ordinal: 0 + row_number: 10 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 11 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 11 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 11 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: universal_credit + label: eligibility basis + measures: + - measure_id: eligible_children_universal_credit_count + label: Estimated eligible children through Universal Credit + ordinal: 0 + column: M + source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + expected_column_header_row: 1 + expected_column_header: eligible_children_universal_credit_count + concept: dfe.funded_childcare_eligible_children_universal_credit + source_concept: dfe.estimated_eligible_children_universal_credit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 11 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: legacy_benefit + label: eligibility basis + measures: + - measure_id: eligible_children_legacy_benefit_count + label: Estimated eligible children through legacy benefits + ordinal: 0 + column: N + source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + expected_column_header_row: 1 + expected_column_header: eligible_children_legacy_benefit_count + concept: dfe.funded_childcare_eligible_children_legacy_benefit + source_concept: dfe.estimated_eligible_children_legacy_benefit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 11 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 11 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 11 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.2_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.2_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.2_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 12 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.2_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.2_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.2_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 12 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 12 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: universal_credit + label: eligibility basis + measures: + - measure_id: eligible_children_universal_credit_count + label: Estimated eligible children through Universal Credit + ordinal: 0 + column: M + source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + expected_column_header_row: 1 + expected_column_header: eligible_children_universal_credit_count + concept: dfe.funded_childcare_eligible_children_universal_credit + source_concept: dfe.estimated_eligible_children_universal_credit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 12 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: legacy_benefit + label: eligibility basis + measures: + - measure_id: eligible_children_legacy_benefit_count + label: Estimated eligible children through legacy benefits + ordinal: 0 + column: N + source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + expected_column_header_row: 1 + expected_column_header: eligible_children_legacy_benefit_count + concept: dfe.funded_childcare_eligible_children_legacy_benefit + source_concept: dfe.estimated_eligible_children_legacy_benefit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 12 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.2_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.2_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.2_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 12 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.2_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.2_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.early_learning_for_2_year_olds.2_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 12 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal Total + ordinal: 0 + row_number: 13 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.total.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.total.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.total.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal Total + ordinal: 0 + row_number: 13 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.total.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.total.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.total.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal Total + ordinal: 0 + row_number: 13 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal Total + ordinal: 0 + row_number: 13 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.total.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.total.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.total.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal Total + ordinal: 0 + row_number: 13 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal Total + ordinal: 0 + row_number: 13 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.total.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.total.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.total.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal Total + ordinal: 0 + row_number: 13 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal Total + ordinal: 0 + row_number: 13 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal Total + ordinal: 0 + row_number: 13 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal 3 years + ordinal: 0 + row_number: 14 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.3_years.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.3_years.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.3_years.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal 3 years + ordinal: 0 + row_number: 14 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.3_years.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.3_years.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.3_years.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal 3 years + ordinal: 0 + row_number: 14 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.3_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.3_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.3_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal 3 years + ordinal: 0 + row_number: 14 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.3_years.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.3_years.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.3_years.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal 3 years + ordinal: 0 + row_number: 14 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.3_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.3_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.3_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal 3 years + ordinal: 0 + row_number: 14 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.3_years.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.3_years.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.3_years.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal 3 years + ordinal: 0 + row_number: 14 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.3_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.3_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.3_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal 3 years + ordinal: 0 + row_number: 14 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.3_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.3_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.3_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal 3 years + ordinal: 0 + row_number: 14 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal 4 years + ordinal: 0 + row_number: 15 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.4_years.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.4_years.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.4_years.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal 4 years + ordinal: 0 + row_number: 15 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.4_years.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.4_years.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.4_years.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal 4 years + ordinal: 0 + row_number: 15 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal 4 years + ordinal: 0 + row_number: 15 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.4_years.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.4_years.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.4_years.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal 4 years + ordinal: 0 + row_number: 15 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal 4 years + ordinal: 0 + row_number: 15 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.4_years.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.4_years.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.4_years.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal 4 years + ordinal: 0 + row_number: 15 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal 4 years + ordinal: 0 + row_number: 15 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2026.universal.4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2026.universal.4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2026.universal.4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2026-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2026 Universal 4 years + ordinal: 0 + row_number: 15 + expected_row_header_column: A + expected_row_header: 2026 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.total.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2025.total.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.total.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Total Total + ordinal: 0 + row_number: 16 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.total.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.total.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.total.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Total Total + ordinal: 0 + row_number: 16 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.total.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.total.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.total.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Total Total + ordinal: 0 + row_number: 16 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents Total + ordinal: 0 + row_number: 17 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents Total + ordinal: 0 + row_number: 17 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents Total + ordinal: 0 + row_number: 17 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents Total + ordinal: 0 + row_number: 17 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents Total + ordinal: 0 + row_number: 17 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.9_to_11_months.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.9_to_11_months.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.9_to_11_months.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 9 to 11 months + ordinal: 0 + row_number: 18 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 9 to 11 months + label: age + filters: + entitlement_type: Working parents + age: 9 to 11 months + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 9 to 11 months + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.9_to_11_months.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.9_to_11_months.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.9_to_11_months.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 9 to 11 months + ordinal: 0 + row_number: 18 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 9 to 11 months + label: age + filters: + entitlement_type: Working parents + age: 9 to 11 months + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 9 to 11 months + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.9_to_11_months.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.9_to_11_months.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.9_to_11_months.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 9 to 11 months + ordinal: 0 + row_number: 18 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 9 to 11 months + label: age + filters: + entitlement_type: Working parents + age: 9 to 11 months + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 9 to 11 months + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.9_to_11_months.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.9_to_11_months.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.9_to_11_months.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 9 to 11 months + ordinal: 0 + row_number: 18 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 9 to 11 months + label: age + filters: + entitlement_type: Working parents + age: 9 to 11 months + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 9 to 11 months + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.9_to_11_months.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.9_to_11_months.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.9_to_11_months.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 9 to 11 months + ordinal: 0 + row_number: 18 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 9 to 11 months + label: age + filters: + entitlement_type: Working parents + age: 9 to 11 months + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 9 to 11 months + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.1_year.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.1_year.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.1_year.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 1 year + ordinal: 0 + row_number: 19 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 1 year + label: age + filters: + entitlement_type: Working parents + age: 1 year + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 1 year + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.1_year.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.1_year.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.1_year.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 1 year + ordinal: 0 + row_number: 19 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 1 year + label: age + filters: + entitlement_type: Working parents + age: 1 year + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 1 year + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.1_year.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.1_year.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.1_year.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 1 year + ordinal: 0 + row_number: 19 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 1 year + label: age + filters: + entitlement_type: Working parents + age: 1 year + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 1 year + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.1_year.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.1_year.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.1_year.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 1 year + ordinal: 0 + row_number: 19 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 1 year + label: age + filters: + entitlement_type: Working parents + age: 1 year + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 1 year + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.1_year.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.1_year.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.1_year.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 1 year + ordinal: 0 + row_number: 19 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 1 year + label: age + filters: + entitlement_type: Working parents + age: 1 year + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 1 year + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.2_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.2_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.2_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 2 years + ordinal: 0 + row_number: 20 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Working parents + age: 2 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.2_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.2_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.2_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 2 years + ordinal: 0 + row_number: 20 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Working parents + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.2_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.2_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.2_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 2 years + ordinal: 0 + row_number: 20 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Working parents + age: 2 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.2_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.2_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.2_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 2 years + ordinal: 0 + row_number: 20 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Working parents + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.2_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.2_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.2_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 2 years + ordinal: 0 + row_number: 20 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Working parents + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.9_months_to_2_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.9_months_to_2_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.9_months_to_2_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 9 months to 2 years + ordinal: 0 + row_number: 21 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 9 months to 2 years + label: age + filters: + entitlement_type: Working parents + age: 9 months to 2 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 9 months to 2 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.9_months_to_2_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.9_months_to_2_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.9_months_to_2_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 9 months to 2 years + ordinal: 0 + row_number: 21 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 9 months to 2 years + label: age + filters: + entitlement_type: Working parents + age: 9 months to 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 9 months to 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.9_months_to_2_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.9_months_to_2_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.9_months_to_2_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 9 months to 2 years + ordinal: 0 + row_number: 21 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 9 months to 2 years + label: age + filters: + entitlement_type: Working parents + age: 9 months to 2 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 9 months to 2 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.9_months_to_2_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.9_months_to_2_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.9_months_to_2_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 9 months to 2 years + ordinal: 0 + row_number: 21 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 9 months to 2 years + label: age + filters: + entitlement_type: Working parents + age: 9 months to 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 9 months to 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.9_months_to_2_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.9_months_to_2_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.9_months_to_2_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 9 months to 2 years + ordinal: 0 + row_number: 21 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 9 months to 2 years + label: age + filters: + entitlement_type: Working parents + age: 9 months to 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 9 months to 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 3 years + ordinal: 0 + row_number: 22 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.3_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.3_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.3_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 3 years + ordinal: 0 + row_number: 22 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.3_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.3_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.3_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 3 years + ordinal: 0 + row_number: 22 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.3_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.3_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.3_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 3 years + ordinal: 0 + row_number: 22 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.3_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.3_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.3_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 3 years + ordinal: 0 + row_number: 22 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 4 years + ordinal: 0 + row_number: 23 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 4 years + ordinal: 0 + row_number: 23 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 4 years + ordinal: 0 + row_number: 23 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 4 years + ordinal: 0 + row_number: 23 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 4 years + ordinal: 0 + row_number: 23 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.3_to_4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.3_to_4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.3_to_4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 3 to 4 years + ordinal: 0 + row_number: 24 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.3_to_4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.3_to_4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.3_to_4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 3 to 4 years + ordinal: 0 + row_number: 24 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.3_to_4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.3_to_4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.3_to_4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 3 to 4 years + ordinal: 0 + row_number: 24 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.3_to_4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.3_to_4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.3_to_4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 3 to 4 years + ordinal: 0 + row_number: 24 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.working_parents.3_to_4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.working_parents.3_to_4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.working_parents.3_to_4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Working parents 3 to 4 years + ordinal: 0 + row_number: 24 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 25 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 25 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 25 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: universal_credit + label: eligibility basis + measures: + - measure_id: eligible_children_universal_credit_count + label: Estimated eligible children through Universal Credit + ordinal: 0 + column: M + source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + expected_column_header_row: 1 + expected_column_header: eligible_children_universal_credit_count + concept: dfe.funded_childcare_eligible_children_universal_credit + source_concept: dfe.estimated_eligible_children_universal_credit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 25 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: legacy_benefit + label: eligibility basis + measures: + - measure_id: eligible_children_legacy_benefit_count + label: Estimated eligible children through legacy benefits + ordinal: 0 + column: N + source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + expected_column_header_row: 1 + expected_column_header: eligible_children_legacy_benefit_count + concept: dfe.funded_childcare_eligible_children_legacy_benefit + source_concept: dfe.estimated_eligible_children_legacy_benefit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 25 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 25 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 25 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.2_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.2_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.2_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 26 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.2_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.2_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.2_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 26 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 26 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: universal_credit + label: eligibility basis + measures: + - measure_id: eligible_children_universal_credit_count + label: Estimated eligible children through Universal Credit + ordinal: 0 + column: M + source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + expected_column_header_row: 1 + expected_column_header: eligible_children_universal_credit_count + concept: dfe.funded_childcare_eligible_children_universal_credit + source_concept: dfe.estimated_eligible_children_universal_credit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 26 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: legacy_benefit + label: eligibility basis + measures: + - measure_id: eligible_children_legacy_benefit_count + label: Estimated eligible children through legacy benefits + ordinal: 0 + column: N + source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + expected_column_header_row: 1 + expected_column_header: eligible_children_legacy_benefit_count + concept: dfe.funded_childcare_eligible_children_legacy_benefit + source_concept: dfe.estimated_eligible_children_legacy_benefit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 26 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.2_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.2_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.2_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 26 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.2_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.2_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.early_learning_for_2_year_olds.2_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 26 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal Total + ordinal: 0 + row_number: 27 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.total.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.total.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.total.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal Total + ordinal: 0 + row_number: 27 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.total.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.total.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.total.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal Total + ordinal: 0 + row_number: 27 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal Total + ordinal: 0 + row_number: 27 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.total.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.total.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.total.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal Total + ordinal: 0 + row_number: 27 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal Total + ordinal: 0 + row_number: 27 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.total.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.total.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.total.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal Total + ordinal: 0 + row_number: 27 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal Total + ordinal: 0 + row_number: 27 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal Total + ordinal: 0 + row_number: 27 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal 3 years + ordinal: 0 + row_number: 28 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.3_years.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.3_years.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.3_years.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal 3 years + ordinal: 0 + row_number: 28 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.3_years.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.3_years.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.3_years.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal 3 years + ordinal: 0 + row_number: 28 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.3_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.3_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.3_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal 3 years + ordinal: 0 + row_number: 28 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.3_years.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.3_years.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.3_years.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal 3 years + ordinal: 0 + row_number: 28 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.3_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.3_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.3_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal 3 years + ordinal: 0 + row_number: 28 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.3_years.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.3_years.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.3_years.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal 3 years + ordinal: 0 + row_number: 28 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.3_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.3_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.3_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal 3 years + ordinal: 0 + row_number: 28 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.3_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.3_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.3_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal 3 years + ordinal: 0 + row_number: 28 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal 4 years + ordinal: 0 + row_number: 29 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.4_years.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.4_years.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.4_years.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal 4 years + ordinal: 0 + row_number: 29 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.4_years.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.4_years.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.4_years.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal 4 years + ordinal: 0 + row_number: 29 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal 4 years + ordinal: 0 + row_number: 29 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.4_years.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.4_years.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.4_years.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal 4 years + ordinal: 0 + row_number: 29 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal 4 years + ordinal: 0 + row_number: 29 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.4_years.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.4_years.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.4_years.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal 4 years + ordinal: 0 + row_number: 29 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal 4 years + ordinal: 0 + row_number: 29 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2025.universal.4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2025.universal.4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2025.universal.4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2025-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2025 Universal 4 years + ordinal: 0 + row_number: 29 + expected_row_header_column: A + expected_row_header: 2025 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.total.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2024.total.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.total.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Total Total + ordinal: 0 + row_number: 30 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.total.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.total.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.total.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Total Total + ordinal: 0 + row_number: 30 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.total.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.total.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.total.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Total Total + ordinal: 0 + row_number: 30 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.working_parents.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2024.working_parents.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.working_parents.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Working parents Total + ordinal: 0 + row_number: 31 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.working_parents.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.working_parents.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.working_parents.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Working parents Total + ordinal: 0 + row_number: 31 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.working_parents.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.working_parents.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.working_parents.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Working parents Total + ordinal: 0 + row_number: 31 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.working_parents.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.working_parents.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.working_parents.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Working parents Total + ordinal: 0 + row_number: 31 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.working_parents.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.working_parents.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.working_parents.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Working parents Total + ordinal: 0 + row_number: 31 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.working_parents.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2024.working_parents.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.working_parents.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Working parents 3 years + ordinal: 0 + row_number: 36 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.working_parents.3_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.working_parents.3_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.working_parents.3_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Working parents 3 years + ordinal: 0 + row_number: 36 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.working_parents.3_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.working_parents.3_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.working_parents.3_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Working parents 3 years + ordinal: 0 + row_number: 36 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.working_parents.3_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.working_parents.3_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.working_parents.3_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Working parents 3 years + ordinal: 0 + row_number: 36 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.working_parents.3_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.working_parents.3_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.working_parents.3_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Working parents 3 years + ordinal: 0 + row_number: 36 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.working_parents.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2024.working_parents.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.working_parents.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Working parents 4 years + ordinal: 0 + row_number: 37 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.working_parents.4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.working_parents.4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.working_parents.4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Working parents 4 years + ordinal: 0 + row_number: 37 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.working_parents.4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.working_parents.4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.working_parents.4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Working parents 4 years + ordinal: 0 + row_number: 37 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.working_parents.4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.working_parents.4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.working_parents.4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Working parents 4 years + ordinal: 0 + row_number: 37 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.working_parents.4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.working_parents.4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.working_parents.4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Working parents 4 years + ordinal: 0 + row_number: 37 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.working_parents.3_to_4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2024.working_parents.3_to_4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.working_parents.3_to_4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Working parents 3 to 4 years + ordinal: 0 + row_number: 38 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.working_parents.3_to_4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.working_parents.3_to_4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.working_parents.3_to_4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Working parents 3 to 4 years + ordinal: 0 + row_number: 38 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.working_parents.3_to_4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.working_parents.3_to_4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.working_parents.3_to_4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Working parents 3 to 4 years + ordinal: 0 + row_number: 38 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.working_parents.3_to_4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.working_parents.3_to_4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.working_parents.3_to_4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Working parents 3 to 4 years + ordinal: 0 + row_number: 38 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.working_parents.3_to_4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.working_parents.3_to_4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.working_parents.3_to_4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Working parents 3 to 4 years + ordinal: 0 + row_number: 38 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 39 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 39 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 39 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: universal_credit + label: eligibility basis + measures: + - measure_id: eligible_children_universal_credit_count + label: Estimated eligible children through Universal Credit + ordinal: 0 + column: M + source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + expected_column_header_row: 1 + expected_column_header: eligible_children_universal_credit_count + concept: dfe.funded_childcare_eligible_children_universal_credit + source_concept: dfe.estimated_eligible_children_universal_credit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 39 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: legacy_benefit + label: eligibility basis + measures: + - measure_id: eligible_children_legacy_benefit_count + label: Estimated eligible children through legacy benefits + ordinal: 0 + column: N + source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + expected_column_header_row: 1 + expected_column_header: eligible_children_legacy_benefit_count + concept: dfe.funded_childcare_eligible_children_legacy_benefit + source_concept: dfe.estimated_eligible_children_legacy_benefit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 39 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 39 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 39 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.2_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.2_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.2_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 40 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.2_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.2_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.2_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 40 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 40 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: universal_credit + label: eligibility basis + measures: + - measure_id: eligible_children_universal_credit_count + label: Estimated eligible children through Universal Credit + ordinal: 0 + column: M + source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + expected_column_header_row: 1 + expected_column_header: eligible_children_universal_credit_count + concept: dfe.funded_childcare_eligible_children_universal_credit + source_concept: dfe.estimated_eligible_children_universal_credit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 40 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: legacy_benefit + label: eligibility basis + measures: + - measure_id: eligible_children_legacy_benefit_count + label: Estimated eligible children through legacy benefits + ordinal: 0 + column: N + source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + expected_column_header_row: 1 + expected_column_header: eligible_children_legacy_benefit_count + concept: dfe.funded_childcare_eligible_children_legacy_benefit + source_concept: dfe.estimated_eligible_children_legacy_benefit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 40 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.2_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.2_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.2_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 40 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.2_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.2_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.early_learning_for_2_year_olds.2_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 40 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal Total + ordinal: 0 + row_number: 41 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.total.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.total.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.total.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal Total + ordinal: 0 + row_number: 41 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.total.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.total.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.total.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal Total + ordinal: 0 + row_number: 41 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal Total + ordinal: 0 + row_number: 41 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.total.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.total.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.total.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal Total + ordinal: 0 + row_number: 41 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal Total + ordinal: 0 + row_number: 41 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.total.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.total.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.total.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal Total + ordinal: 0 + row_number: 41 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal Total + ordinal: 0 + row_number: 41 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal Total + ordinal: 0 + row_number: 41 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal 3 years + ordinal: 0 + row_number: 42 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.3_years.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.3_years.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.3_years.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal 3 years + ordinal: 0 + row_number: 42 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.3_years.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.3_years.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.3_years.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal 3 years + ordinal: 0 + row_number: 42 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.3_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.3_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.3_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal 3 years + ordinal: 0 + row_number: 42 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.3_years.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.3_years.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.3_years.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal 3 years + ordinal: 0 + row_number: 42 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.3_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.3_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.3_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal 3 years + ordinal: 0 + row_number: 42 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.3_years.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.3_years.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.3_years.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal 3 years + ordinal: 0 + row_number: 42 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.3_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.3_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.3_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal 3 years + ordinal: 0 + row_number: 42 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.3_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.3_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.3_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal 3 years + ordinal: 0 + row_number: 42 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal 4 years + ordinal: 0 + row_number: 43 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.4_years.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.4_years.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.4_years.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal 4 years + ordinal: 0 + row_number: 43 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.4_years.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.4_years.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.4_years.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal 4 years + ordinal: 0 + row_number: 43 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal 4 years + ordinal: 0 + row_number: 43 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.4_years.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.4_years.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.4_years.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal 4 years + ordinal: 0 + row_number: 43 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal 4 years + ordinal: 0 + row_number: 43 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.4_years.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.4_years.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.4_years.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal 4 years + ordinal: 0 + row_number: 43 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal 4 years + ordinal: 0 + row_number: 43 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2024.universal.4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2024.universal.4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2024.universal.4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2024-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2024 Universal 4 years + ordinal: 0 + row_number: 43 + expected_row_header_column: A + expected_row_header: 2024 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.total.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2023.total.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.total.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Total Total + ordinal: 0 + row_number: 44 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.total.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.total.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.total.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Total Total + ordinal: 0 + row_number: 44 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.total.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.total.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.total.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Total Total + ordinal: 0 + row_number: 44 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.working_parents.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2023.working_parents.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.working_parents.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Working parents Total + ordinal: 0 + row_number: 45 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.working_parents.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.working_parents.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.working_parents.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Working parents Total + ordinal: 0 + row_number: 45 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.working_parents.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.working_parents.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.working_parents.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Working parents Total + ordinal: 0 + row_number: 45 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.working_parents.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.working_parents.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.working_parents.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Working parents Total + ordinal: 0 + row_number: 45 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.working_parents.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.working_parents.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.working_parents.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Working parents Total + ordinal: 0 + row_number: 45 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.working_parents.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2023.working_parents.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.working_parents.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Working parents 3 years + ordinal: 0 + row_number: 50 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.working_parents.3_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.working_parents.3_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.working_parents.3_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Working parents 3 years + ordinal: 0 + row_number: 50 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.working_parents.3_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.working_parents.3_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.working_parents.3_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Working parents 3 years + ordinal: 0 + row_number: 50 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.working_parents.3_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.working_parents.3_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.working_parents.3_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Working parents 3 years + ordinal: 0 + row_number: 50 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.working_parents.3_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.working_parents.3_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.working_parents.3_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Working parents 3 years + ordinal: 0 + row_number: 50 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.working_parents.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2023.working_parents.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.working_parents.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Working parents 4 years + ordinal: 0 + row_number: 51 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.working_parents.4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.working_parents.4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.working_parents.4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Working parents 4 years + ordinal: 0 + row_number: 51 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.working_parents.4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.working_parents.4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.working_parents.4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Working parents 4 years + ordinal: 0 + row_number: 51 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.working_parents.4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.working_parents.4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.working_parents.4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Working parents 4 years + ordinal: 0 + row_number: 51 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.working_parents.4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.working_parents.4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.working_parents.4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Working parents 4 years + ordinal: 0 + row_number: 51 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.working_parents.3_to_4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2023.working_parents.3_to_4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.working_parents.3_to_4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Working parents 3 to 4 years + ordinal: 0 + row_number: 52 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.working_parents.3_to_4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.working_parents.3_to_4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.working_parents.3_to_4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Working parents 3 to 4 years + ordinal: 0 + row_number: 52 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.working_parents.3_to_4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.working_parents.3_to_4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.working_parents.3_to_4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Working parents 3 to 4 years + ordinal: 0 + row_number: 52 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.working_parents.3_to_4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.working_parents.3_to_4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.working_parents.3_to_4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Working parents 3 to 4 years + ordinal: 0 + row_number: 52 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.working_parents.3_to_4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.working_parents.3_to_4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.working_parents.3_to_4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Working parents 3 to 4 years + ordinal: 0 + row_number: 52 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 53 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 53 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 53 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: universal_credit + label: eligibility basis + measures: + - measure_id: eligible_children_universal_credit_count + label: Estimated eligible children through Universal Credit + ordinal: 0 + column: M + source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + expected_column_header_row: 1 + expected_column_header: eligible_children_universal_credit_count + concept: dfe.funded_childcare_eligible_children_universal_credit + source_concept: dfe.estimated_eligible_children_universal_credit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 53 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: legacy_benefit + label: eligibility basis + measures: + - measure_id: eligible_children_legacy_benefit_count + label: Estimated eligible children through legacy benefits + ordinal: 0 + column: N + source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + expected_column_header_row: 1 + expected_column_header: eligible_children_legacy_benefit_count + concept: dfe.funded_childcare_eligible_children_legacy_benefit + source_concept: dfe.estimated_eligible_children_legacy_benefit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 53 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 53 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 53 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.2_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.2_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.2_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 54 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.2_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.2_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.2_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 54 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 54 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: universal_credit + label: eligibility basis + measures: + - measure_id: eligible_children_universal_credit_count + label: Estimated eligible children through Universal Credit + ordinal: 0 + column: M + source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + expected_column_header_row: 1 + expected_column_header: eligible_children_universal_credit_count + concept: dfe.funded_childcare_eligible_children_universal_credit + source_concept: dfe.estimated_eligible_children_universal_credit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 54 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: legacy_benefit + label: eligibility basis + measures: + - measure_id: eligible_children_legacy_benefit_count + label: Estimated eligible children through legacy benefits + ordinal: 0 + column: N + source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + expected_column_header_row: 1 + expected_column_header: eligible_children_legacy_benefit_count + concept: dfe.funded_childcare_eligible_children_legacy_benefit + source_concept: dfe.estimated_eligible_children_legacy_benefit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 54 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.2_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.2_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.2_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 54 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.2_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.2_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.early_learning_for_2_year_olds.2_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 54 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal Total + ordinal: 0 + row_number: 55 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.total.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.total.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.total.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal Total + ordinal: 0 + row_number: 55 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.total.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.total.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.total.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal Total + ordinal: 0 + row_number: 55 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal Total + ordinal: 0 + row_number: 55 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.total.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.total.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.total.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal Total + ordinal: 0 + row_number: 55 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal Total + ordinal: 0 + row_number: 55 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.total.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.total.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.total.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal Total + ordinal: 0 + row_number: 55 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal Total + ordinal: 0 + row_number: 55 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal Total + ordinal: 0 + row_number: 55 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal 3 years + ordinal: 0 + row_number: 56 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.3_years.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.3_years.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.3_years.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal 3 years + ordinal: 0 + row_number: 56 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.3_years.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.3_years.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.3_years.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal 3 years + ordinal: 0 + row_number: 56 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.3_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.3_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.3_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal 3 years + ordinal: 0 + row_number: 56 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.3_years.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.3_years.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.3_years.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal 3 years + ordinal: 0 + row_number: 56 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.3_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.3_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.3_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal 3 years + ordinal: 0 + row_number: 56 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.3_years.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.3_years.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.3_years.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal 3 years + ordinal: 0 + row_number: 56 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.3_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.3_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.3_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal 3 years + ordinal: 0 + row_number: 56 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.3_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.3_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.3_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal 3 years + ordinal: 0 + row_number: 56 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal 4 years + ordinal: 0 + row_number: 57 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.4_years.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.4_years.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.4_years.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal 4 years + ordinal: 0 + row_number: 57 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.4_years.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.4_years.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.4_years.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal 4 years + ordinal: 0 + row_number: 57 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal 4 years + ordinal: 0 + row_number: 57 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.4_years.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.4_years.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.4_years.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal 4 years + ordinal: 0 + row_number: 57 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal 4 years + ordinal: 0 + row_number: 57 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.4_years.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.4_years.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.4_years.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal 4 years + ordinal: 0 + row_number: 57 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal 4 years + ordinal: 0 + row_number: 57 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2023.universal.4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2023.universal.4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2023.universal.4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2023-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2023 Universal 4 years + ordinal: 0 + row_number: 57 + expected_row_header_column: A + expected_row_header: 2023 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.total.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2022.total.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.total.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Total Total + ordinal: 0 + row_number: 58 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.total.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.total.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.total.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Total Total + ordinal: 0 + row_number: 58 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.total.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.total.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.total.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Total Total + ordinal: 0 + row_number: 58 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.working_parents.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2022.working_parents.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.working_parents.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Working parents Total + ordinal: 0 + row_number: 59 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.working_parents.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.working_parents.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.working_parents.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Working parents Total + ordinal: 0 + row_number: 59 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.working_parents.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.working_parents.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.working_parents.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Working parents Total + ordinal: 0 + row_number: 59 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.working_parents.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.working_parents.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.working_parents.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Working parents Total + ordinal: 0 + row_number: 59 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.working_parents.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.working_parents.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.working_parents.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Working parents Total + ordinal: 0 + row_number: 59 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.working_parents.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2022.working_parents.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.working_parents.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Working parents 3 years + ordinal: 0 + row_number: 64 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.working_parents.3_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.working_parents.3_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.working_parents.3_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Working parents 3 years + ordinal: 0 + row_number: 64 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.working_parents.3_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.working_parents.3_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.working_parents.3_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Working parents 3 years + ordinal: 0 + row_number: 64 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.working_parents.3_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.working_parents.3_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.working_parents.3_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Working parents 3 years + ordinal: 0 + row_number: 64 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.working_parents.3_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.working_parents.3_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.working_parents.3_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Working parents 3 years + ordinal: 0 + row_number: 64 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.working_parents.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2022.working_parents.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.working_parents.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Working parents 4 years + ordinal: 0 + row_number: 65 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.working_parents.4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.working_parents.4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.working_parents.4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Working parents 4 years + ordinal: 0 + row_number: 65 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.working_parents.4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.working_parents.4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.working_parents.4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Working parents 4 years + ordinal: 0 + row_number: 65 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.working_parents.4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.working_parents.4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.working_parents.4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Working parents 4 years + ordinal: 0 + row_number: 65 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.working_parents.4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.working_parents.4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.working_parents.4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Working parents 4 years + ordinal: 0 + row_number: 65 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.working_parents.3_to_4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2022.working_parents.3_to_4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.working_parents.3_to_4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Working parents 3 to 4 years + ordinal: 0 + row_number: 66 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.working_parents.3_to_4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.working_parents.3_to_4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.working_parents.3_to_4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Working parents 3 to 4 years + ordinal: 0 + row_number: 66 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.working_parents.3_to_4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.working_parents.3_to_4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.working_parents.3_to_4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Working parents 3 to 4 years + ordinal: 0 + row_number: 66 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.working_parents.3_to_4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.working_parents.3_to_4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.working_parents.3_to_4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Working parents 3 to 4 years + ordinal: 0 + row_number: 66 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.working_parents.3_to_4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.working_parents.3_to_4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.working_parents.3_to_4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Working parents 3 to 4 years + ordinal: 0 + row_number: 66 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 67 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 67 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 67 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: universal_credit + label: eligibility basis + measures: + - measure_id: eligible_children_universal_credit_count + label: Estimated eligible children through Universal Credit + ordinal: 0 + column: M + source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + expected_column_header_row: 1 + expected_column_header: eligible_children_universal_credit_count + concept: dfe.funded_childcare_eligible_children_universal_credit + source_concept: dfe.estimated_eligible_children_universal_credit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 67 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: legacy_benefit + label: eligibility basis + measures: + - measure_id: eligible_children_legacy_benefit_count + label: Estimated eligible children through legacy benefits + ordinal: 0 + column: N + source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + expected_column_header_row: 1 + expected_column_header: eligible_children_legacy_benefit_count + concept: dfe.funded_childcare_eligible_children_legacy_benefit + source_concept: dfe.estimated_eligible_children_legacy_benefit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 67 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 67 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 67 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.2_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.2_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.2_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 68 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.2_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.2_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.2_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 68 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 68 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: universal_credit + label: eligibility basis + measures: + - measure_id: eligible_children_universal_credit_count + label: Estimated eligible children through Universal Credit + ordinal: 0 + column: M + source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + expected_column_header_row: 1 + expected_column_header: eligible_children_universal_credit_count + concept: dfe.funded_childcare_eligible_children_universal_credit + source_concept: dfe.estimated_eligible_children_universal_credit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 68 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: legacy_benefit + label: eligibility basis + measures: + - measure_id: eligible_children_legacy_benefit_count + label: Estimated eligible children through legacy benefits + ordinal: 0 + column: N + source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + expected_column_header_row: 1 + expected_column_header: eligible_children_legacy_benefit_count + concept: dfe.funded_childcare_eligible_children_legacy_benefit + source_concept: dfe.estimated_eligible_children_legacy_benefit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 68 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.2_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.2_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.2_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 68 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.2_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.2_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.early_learning_for_2_year_olds.2_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 68 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal Total + ordinal: 0 + row_number: 69 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.total.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.total.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.total.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal Total + ordinal: 0 + row_number: 69 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.total.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.total.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.total.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal Total + ordinal: 0 + row_number: 69 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal Total + ordinal: 0 + row_number: 69 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.total.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.total.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.total.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal Total + ordinal: 0 + row_number: 69 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal Total + ordinal: 0 + row_number: 69 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.total.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.total.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.total.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal Total + ordinal: 0 + row_number: 69 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal Total + ordinal: 0 + row_number: 69 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal Total + ordinal: 0 + row_number: 69 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal 3 years + ordinal: 0 + row_number: 70 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.3_years.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.3_years.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.3_years.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal 3 years + ordinal: 0 + row_number: 70 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.3_years.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.3_years.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.3_years.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal 3 years + ordinal: 0 + row_number: 70 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.3_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.3_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.3_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal 3 years + ordinal: 0 + row_number: 70 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.3_years.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.3_years.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.3_years.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal 3 years + ordinal: 0 + row_number: 70 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.3_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.3_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.3_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal 3 years + ordinal: 0 + row_number: 70 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.3_years.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.3_years.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.3_years.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal 3 years + ordinal: 0 + row_number: 70 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.3_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.3_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.3_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal 3 years + ordinal: 0 + row_number: 70 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.3_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.3_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.3_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal 3 years + ordinal: 0 + row_number: 70 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal 4 years + ordinal: 0 + row_number: 71 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.4_years.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.4_years.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.4_years.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal 4 years + ordinal: 0 + row_number: 71 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.4_years.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.4_years.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.4_years.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal 4 years + ordinal: 0 + row_number: 71 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal 4 years + ordinal: 0 + row_number: 71 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.4_years.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.4_years.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.4_years.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal 4 years + ordinal: 0 + row_number: 71 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal 4 years + ordinal: 0 + row_number: 71 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.4_years.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.4_years.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.4_years.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal 4 years + ordinal: 0 + row_number: 71 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal 4 years + ordinal: 0 + row_number: 71 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2022.universal.4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2022.universal.4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2022.universal.4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2022-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2022 Universal 4 years + ordinal: 0 + row_number: 71 + expected_row_header_column: A + expected_row_header: 2022 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.total.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2021.total.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.total.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Total Total + ordinal: 0 + row_number: 72 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.total.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.total.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.total.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Total Total + ordinal: 0 + row_number: 72 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.total.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.total.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.total.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Total Total + ordinal: 0 + row_number: 72 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.working_parents.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2021.working_parents.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.working_parents.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Working parents Total + ordinal: 0 + row_number: 73 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.working_parents.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.working_parents.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.working_parents.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Working parents Total + ordinal: 0 + row_number: 73 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.working_parents.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.working_parents.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.working_parents.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Working parents Total + ordinal: 0 + row_number: 73 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.working_parents.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.working_parents.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.working_parents.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Working parents Total + ordinal: 0 + row_number: 73 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.working_parents.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.working_parents.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.working_parents.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Working parents Total + ordinal: 0 + row_number: 73 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.working_parents.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2021.working_parents.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.working_parents.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Working parents 3 years + ordinal: 0 + row_number: 78 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.working_parents.3_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.working_parents.3_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.working_parents.3_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Working parents 3 years + ordinal: 0 + row_number: 78 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.working_parents.3_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.working_parents.3_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.working_parents.3_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Working parents 3 years + ordinal: 0 + row_number: 78 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.working_parents.3_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.working_parents.3_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.working_parents.3_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Working parents 3 years + ordinal: 0 + row_number: 78 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.working_parents.3_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.working_parents.3_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.working_parents.3_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Working parents 3 years + ordinal: 0 + row_number: 78 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.working_parents.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2021.working_parents.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.working_parents.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Working parents 4 years + ordinal: 0 + row_number: 79 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.working_parents.4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.working_parents.4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.working_parents.4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Working parents 4 years + ordinal: 0 + row_number: 79 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.working_parents.4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.working_parents.4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.working_parents.4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Working parents 4 years + ordinal: 0 + row_number: 79 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.working_parents.4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.working_parents.4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.working_parents.4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Working parents 4 years + ordinal: 0 + row_number: 79 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.working_parents.4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.working_parents.4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.working_parents.4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Working parents 4 years + ordinal: 0 + row_number: 79 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.working_parents.3_to_4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2021.working_parents.3_to_4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.working_parents.3_to_4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Working parents 3 to 4 years + ordinal: 0 + row_number: 80 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.working_parents.3_to_4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.working_parents.3_to_4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.working_parents.3_to_4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Working parents 3 to 4 years + ordinal: 0 + row_number: 80 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.working_parents.3_to_4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.working_parents.3_to_4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.working_parents.3_to_4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Working parents 3 to 4 years + ordinal: 0 + row_number: 80 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.working_parents.3_to_4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.working_parents.3_to_4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.working_parents.3_to_4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Working parents 3 to 4 years + ordinal: 0 + row_number: 80 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.working_parents.3_to_4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.working_parents.3_to_4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.working_parents.3_to_4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Working parents 3 to 4 years + ordinal: 0 + row_number: 80 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 81 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 81 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 81 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: universal_credit + label: eligibility basis + measures: + - measure_id: eligible_children_universal_credit_count + label: Estimated eligible children through Universal Credit + ordinal: 0 + column: M + source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + expected_column_header_row: 1 + expected_column_header: eligible_children_universal_credit_count + concept: dfe.funded_childcare_eligible_children_universal_credit + source_concept: dfe.estimated_eligible_children_universal_credit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 81 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: legacy_benefit + label: eligibility basis + measures: + - measure_id: eligible_children_legacy_benefit_count + label: Estimated eligible children through legacy benefits + ordinal: 0 + column: N + source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + expected_column_header_row: 1 + expected_column_header: eligible_children_legacy_benefit_count + concept: dfe.funded_childcare_eligible_children_legacy_benefit + source_concept: dfe.estimated_eligible_children_legacy_benefit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 81 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 81 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 81 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.2_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.2_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.2_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 82 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.2_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.2_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.2_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 82 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 82 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: universal_credit + label: eligibility basis + measures: + - measure_id: eligible_children_universal_credit_count + label: Estimated eligible children through Universal Credit + ordinal: 0 + column: M + source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + expected_column_header_row: 1 + expected_column_header: eligible_children_universal_credit_count + concept: dfe.funded_childcare_eligible_children_universal_credit + source_concept: dfe.estimated_eligible_children_universal_credit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 82 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: legacy_benefit + label: eligibility basis + measures: + - measure_id: eligible_children_legacy_benefit_count + label: Estimated eligible children through legacy benefits + ordinal: 0 + column: N + source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + expected_column_header_row: 1 + expected_column_header: eligible_children_legacy_benefit_count + concept: dfe.funded_childcare_eligible_children_legacy_benefit + source_concept: dfe.estimated_eligible_children_legacy_benefit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 82 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.2_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.2_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.2_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 82 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.2_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.2_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.early_learning_for_2_year_olds.2_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 82 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal Total + ordinal: 0 + row_number: 83 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.total.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.total.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.total.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal Total + ordinal: 0 + row_number: 83 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.total.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.total.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.total.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal Total + ordinal: 0 + row_number: 83 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal Total + ordinal: 0 + row_number: 83 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.total.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.total.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.total.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal Total + ordinal: 0 + row_number: 83 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal Total + ordinal: 0 + row_number: 83 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.total.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.total.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.total.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal Total + ordinal: 0 + row_number: 83 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal Total + ordinal: 0 + row_number: 83 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal Total + ordinal: 0 + row_number: 83 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal 3 years + ordinal: 0 + row_number: 84 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.3_years.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.3_years.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.3_years.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal 3 years + ordinal: 0 + row_number: 84 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.3_years.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.3_years.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.3_years.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal 3 years + ordinal: 0 + row_number: 84 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.3_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.3_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.3_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal 3 years + ordinal: 0 + row_number: 84 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.3_years.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.3_years.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.3_years.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal 3 years + ordinal: 0 + row_number: 84 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.3_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.3_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.3_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal 3 years + ordinal: 0 + row_number: 84 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.3_years.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.3_years.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.3_years.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal 3 years + ordinal: 0 + row_number: 84 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.3_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.3_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.3_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal 3 years + ordinal: 0 + row_number: 84 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.3_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.3_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.3_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal 3 years + ordinal: 0 + row_number: 84 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal 4 years + ordinal: 0 + row_number: 85 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.4_years.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.4_years.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.4_years.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal 4 years + ordinal: 0 + row_number: 85 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.4_years.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.4_years.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.4_years.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal 4 years + ordinal: 0 + row_number: 85 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal 4 years + ordinal: 0 + row_number: 85 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.4_years.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.4_years.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.4_years.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal 4 years + ordinal: 0 + row_number: 85 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal 4 years + ordinal: 0 + row_number: 85 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.4_years.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.4_years.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.4_years.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal 4 years + ordinal: 0 + row_number: 85 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal 4 years + ordinal: 0 + row_number: 85 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2021.universal.4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2021.universal.4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2021.universal.4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2021-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2021 Universal 4 years + ordinal: 0 + row_number: 85 + expected_row_header_column: A + expected_row_header: 2021 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.total.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2020.total.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.total.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Total Total + ordinal: 0 + row_number: 86 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.total.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.total.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.total.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Total Total + ordinal: 0 + row_number: 86 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.total.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.total.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.total.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Total Total + ordinal: 0 + row_number: 86 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.working_parents.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2020.working_parents.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.working_parents.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Working parents Total + ordinal: 0 + row_number: 87 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.working_parents.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.working_parents.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.working_parents.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Working parents Total + ordinal: 0 + row_number: 87 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.working_parents.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.working_parents.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.working_parents.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Working parents Total + ordinal: 0 + row_number: 87 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.working_parents.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.working_parents.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.working_parents.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Working parents Total + ordinal: 0 + row_number: 87 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.working_parents.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.working_parents.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.working_parents.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Working parents Total + ordinal: 0 + row_number: 87 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.working_parents.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2020.working_parents.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.working_parents.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Working parents 3 years + ordinal: 0 + row_number: 92 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.working_parents.3_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.working_parents.3_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.working_parents.3_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Working parents 3 years + ordinal: 0 + row_number: 92 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.working_parents.3_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.working_parents.3_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.working_parents.3_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Working parents 3 years + ordinal: 0 + row_number: 92 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.working_parents.3_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.working_parents.3_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.working_parents.3_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Working parents 3 years + ordinal: 0 + row_number: 92 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.working_parents.3_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.working_parents.3_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.working_parents.3_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Working parents 3 years + ordinal: 0 + row_number: 92 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.working_parents.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2020.working_parents.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.working_parents.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Working parents 4 years + ordinal: 0 + row_number: 93 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.working_parents.4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.working_parents.4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.working_parents.4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Working parents 4 years + ordinal: 0 + row_number: 93 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.working_parents.4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.working_parents.4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.working_parents.4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Working parents 4 years + ordinal: 0 + row_number: 93 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.working_parents.4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.working_parents.4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.working_parents.4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Working parents 4 years + ordinal: 0 + row_number: 93 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.working_parents.4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.working_parents.4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.working_parents.4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Working parents 4 years + ordinal: 0 + row_number: 93 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.working_parents.3_to_4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2020.working_parents.3_to_4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.working_parents.3_to_4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Working parents 3 to 4 years + ordinal: 0 + row_number: 94 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.working_parents.3_to_4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.working_parents.3_to_4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.working_parents.3_to_4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Working parents 3 to 4 years + ordinal: 0 + row_number: 94 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.working_parents.3_to_4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.working_parents.3_to_4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.working_parents.3_to_4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Working parents 3 to 4 years + ordinal: 0 + row_number: 94 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.working_parents.3_to_4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.working_parents.3_to_4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.working_parents.3_to_4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Working parents 3 to 4 years + ordinal: 0 + row_number: 94 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.working_parents.3_to_4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.working_parents.3_to_4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.working_parents.3_to_4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Working parents 3 to 4 years + ordinal: 0 + row_number: 94 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 95 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 95 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 95 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: universal_credit + label: eligibility basis + measures: + - measure_id: eligible_children_universal_credit_count + label: Estimated eligible children through Universal Credit + ordinal: 0 + column: M + source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + expected_column_header_row: 1 + expected_column_header: eligible_children_universal_credit_count + concept: dfe.funded_childcare_eligible_children_universal_credit + source_concept: dfe.estimated_eligible_children_universal_credit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 95 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: legacy_benefit + label: eligibility basis + measures: + - measure_id: eligible_children_legacy_benefit_count + label: Estimated eligible children through legacy benefits + ordinal: 0 + column: N + source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + expected_column_header_row: 1 + expected_column_header: eligible_children_legacy_benefit_count + concept: dfe.funded_childcare_eligible_children_legacy_benefit + source_concept: dfe.estimated_eligible_children_legacy_benefit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 95 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 95 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 95 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.2_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.2_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.2_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 96 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.2_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.2_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.2_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 96 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 96 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: universal_credit + label: eligibility basis + measures: + - measure_id: eligible_children_universal_credit_count + label: Estimated eligible children through Universal Credit + ordinal: 0 + column: M + source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + expected_column_header_row: 1 + expected_column_header: eligible_children_universal_credit_count + concept: dfe.funded_childcare_eligible_children_universal_credit + source_concept: dfe.estimated_eligible_children_universal_credit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 96 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: legacy_benefit + label: eligibility basis + measures: + - measure_id: eligible_children_legacy_benefit_count + label: Estimated eligible children through legacy benefits + ordinal: 0 + column: N + source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + expected_column_header_row: 1 + expected_column_header: eligible_children_legacy_benefit_count + concept: dfe.funded_childcare_eligible_children_legacy_benefit + source_concept: dfe.estimated_eligible_children_legacy_benefit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 96 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.2_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.2_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.2_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 96 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.2_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.2_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.early_learning_for_2_year_olds.2_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 96 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal Total + ordinal: 0 + row_number: 97 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.total.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.total.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.total.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal Total + ordinal: 0 + row_number: 97 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.total.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.total.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.total.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal Total + ordinal: 0 + row_number: 97 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal Total + ordinal: 0 + row_number: 97 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.total.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.total.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.total.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal Total + ordinal: 0 + row_number: 97 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal Total + ordinal: 0 + row_number: 97 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.total.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.total.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.total.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal Total + ordinal: 0 + row_number: 97 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal Total + ordinal: 0 + row_number: 97 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal Total + ordinal: 0 + row_number: 97 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal 3 years + ordinal: 0 + row_number: 98 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.3_years.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.3_years.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.3_years.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal 3 years + ordinal: 0 + row_number: 98 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.3_years.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.3_years.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.3_years.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal 3 years + ordinal: 0 + row_number: 98 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.3_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.3_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.3_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal 3 years + ordinal: 0 + row_number: 98 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.3_years.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.3_years.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.3_years.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal 3 years + ordinal: 0 + row_number: 98 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.3_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.3_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.3_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal 3 years + ordinal: 0 + row_number: 98 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.3_years.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.3_years.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.3_years.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal 3 years + ordinal: 0 + row_number: 98 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.3_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.3_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.3_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal 3 years + ordinal: 0 + row_number: 98 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.3_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.3_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.3_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal 3 years + ordinal: 0 + row_number: 98 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal 4 years + ordinal: 0 + row_number: 99 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.4_years.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.4_years.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.4_years.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal 4 years + ordinal: 0 + row_number: 99 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.4_years.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.4_years.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.4_years.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal 4 years + ordinal: 0 + row_number: 99 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal 4 years + ordinal: 0 + row_number: 99 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.4_years.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.4_years.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.4_years.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal 4 years + ordinal: 0 + row_number: 99 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal 4 years + ordinal: 0 + row_number: 99 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.4_years.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.4_years.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.4_years.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal 4 years + ordinal: 0 + row_number: 99 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal 4 years + ordinal: 0 + row_number: 99 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2020.universal.4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2020.universal.4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2020.universal.4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2020-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2020 Universal 4 years + ordinal: 0 + row_number: 99 + expected_row_header_column: A + expected_row_header: 2020 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.total.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2019.total.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.total.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Total Total + ordinal: 0 + row_number: 100 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.total.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.total.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.total.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Total Total + ordinal: 0 + row_number: 100 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.total.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.total.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.total.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Total Total + ordinal: 0 + row_number: 100 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.working_parents.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2019.working_parents.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.working_parents.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Working parents Total + ordinal: 0 + row_number: 101 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.working_parents.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.working_parents.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.working_parents.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Working parents Total + ordinal: 0 + row_number: 101 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.working_parents.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.working_parents.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.working_parents.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Working parents Total + ordinal: 0 + row_number: 101 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.working_parents.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.working_parents.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.working_parents.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Working parents Total + ordinal: 0 + row_number: 101 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.working_parents.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.working_parents.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.working_parents.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Working parents Total + ordinal: 0 + row_number: 101 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.working_parents.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2019.working_parents.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.working_parents.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Working parents 3 years + ordinal: 0 + row_number: 106 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.working_parents.3_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.working_parents.3_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.working_parents.3_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Working parents 3 years + ordinal: 0 + row_number: 106 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.working_parents.3_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.working_parents.3_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.working_parents.3_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Working parents 3 years + ordinal: 0 + row_number: 106 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.working_parents.3_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.working_parents.3_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.working_parents.3_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Working parents 3 years + ordinal: 0 + row_number: 106 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.working_parents.3_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.working_parents.3_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.working_parents.3_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Working parents 3 years + ordinal: 0 + row_number: 106 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.working_parents.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2019.working_parents.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.working_parents.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Working parents 4 years + ordinal: 0 + row_number: 107 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.working_parents.4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.working_parents.4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.working_parents.4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Working parents 4 years + ordinal: 0 + row_number: 107 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.working_parents.4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.working_parents.4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.working_parents.4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Working parents 4 years + ordinal: 0 + row_number: 107 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.working_parents.4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.working_parents.4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.working_parents.4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Working parents 4 years + ordinal: 0 + row_number: 107 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.working_parents.4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.working_parents.4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.working_parents.4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Working parents 4 years + ordinal: 0 + row_number: 107 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.working_parents.3_to_4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2019.working_parents.3_to_4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.working_parents.3_to_4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Working parents 3 to 4 years + ordinal: 0 + row_number: 108 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.working_parents.3_to_4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.working_parents.3_to_4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.working_parents.3_to_4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Working parents 3 to 4 years + ordinal: 0 + row_number: 108 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.working_parents.3_to_4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.working_parents.3_to_4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.working_parents.3_to_4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Working parents 3 to 4 years + ordinal: 0 + row_number: 108 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.working_parents.3_to_4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.working_parents.3_to_4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.working_parents.3_to_4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Working parents 3 to 4 years + ordinal: 0 + row_number: 108 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.working_parents.3_to_4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.working_parents.3_to_4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.working_parents.3_to_4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Working parents 3 to 4 years + ordinal: 0 + row_number: 108 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 109 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 109 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 109 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: universal_credit + label: eligibility basis + measures: + - measure_id: eligible_children_universal_credit_count + label: Estimated eligible children through Universal Credit + ordinal: 0 + column: M + source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + expected_column_header_row: 1 + expected_column_header: eligible_children_universal_credit_count + concept: dfe.funded_childcare_eligible_children_universal_credit + source_concept: dfe.estimated_eligible_children_universal_credit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 109 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: legacy_benefit + label: eligibility basis + measures: + - measure_id: eligible_children_legacy_benefit_count + label: Estimated eligible children through legacy benefits + ordinal: 0 + column: N + source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + expected_column_header_row: 1 + expected_column_header: eligible_children_legacy_benefit_count + concept: dfe.funded_childcare_eligible_children_legacy_benefit + source_concept: dfe.estimated_eligible_children_legacy_benefit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 109 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 109 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 109 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.2_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.2_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.2_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 110 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.2_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.2_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.2_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 110 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 110 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: universal_credit + label: eligibility basis + measures: + - measure_id: eligible_children_universal_credit_count + label: Estimated eligible children through Universal Credit + ordinal: 0 + column: M + source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + expected_column_header_row: 1 + expected_column_header: eligible_children_universal_credit_count + concept: dfe.funded_childcare_eligible_children_universal_credit + source_concept: dfe.estimated_eligible_children_universal_credit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 110 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: legacy_benefit + label: eligibility basis + measures: + - measure_id: eligible_children_legacy_benefit_count + label: Estimated eligible children through legacy benefits + ordinal: 0 + column: N + source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + expected_column_header_row: 1 + expected_column_header: eligible_children_legacy_benefit_count + concept: dfe.funded_childcare_eligible_children_legacy_benefit + source_concept: dfe.estimated_eligible_children_legacy_benefit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 110 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.2_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.2_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.2_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 110 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.2_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.2_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.early_learning_for_2_year_olds.2_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 110 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal Total + ordinal: 0 + row_number: 111 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.total.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.total.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.total.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal Total + ordinal: 0 + row_number: 111 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.total.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.total.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.total.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal Total + ordinal: 0 + row_number: 111 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal Total + ordinal: 0 + row_number: 111 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.total.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.total.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.total.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal Total + ordinal: 0 + row_number: 111 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal Total + ordinal: 0 + row_number: 111 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.total.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.total.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.total.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal Total + ordinal: 0 + row_number: 111 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal Total + ordinal: 0 + row_number: 111 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal Total + ordinal: 0 + row_number: 111 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal 3 years + ordinal: 0 + row_number: 112 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.3_years.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.3_years.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.3_years.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal 3 years + ordinal: 0 + row_number: 112 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.3_years.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.3_years.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.3_years.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal 3 years + ordinal: 0 + row_number: 112 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.3_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.3_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.3_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal 3 years + ordinal: 0 + row_number: 112 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.3_years.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.3_years.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.3_years.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal 3 years + ordinal: 0 + row_number: 112 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.3_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.3_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.3_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal 3 years + ordinal: 0 + row_number: 112 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.3_years.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.3_years.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.3_years.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal 3 years + ordinal: 0 + row_number: 112 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.3_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.3_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.3_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal 3 years + ordinal: 0 + row_number: 112 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.3_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.3_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.3_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal 3 years + ordinal: 0 + row_number: 112 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal 4 years + ordinal: 0 + row_number: 113 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.4_years.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.4_years.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.4_years.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal 4 years + ordinal: 0 + row_number: 113 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.4_years.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.4_years.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.4_years.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal 4 years + ordinal: 0 + row_number: 113 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal 4 years + ordinal: 0 + row_number: 113 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.4_years.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.4_years.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.4_years.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal 4 years + ordinal: 0 + row_number: 113 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal 4 years + ordinal: 0 + row_number: 113 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.4_years.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.4_years.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.4_years.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal 4 years + ordinal: 0 + row_number: 113 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal 4 years + ordinal: 0 + row_number: 113 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2019.universal.4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2019.universal.4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2019.universal.4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2019-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2019 Universal 4 years + ordinal: 0 + row_number: 113 + expected_row_header_column: A + expected_row_header: 2019 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.total.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2018.total.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.total.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Total Total + ordinal: 0 + row_number: 114 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.total.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.total.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.total.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Total Total + ordinal: 0 + row_number: 114 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.total.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.total.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.total.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Total Total + ordinal: 0 + row_number: 114 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.working_parents.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2018.working_parents.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.working_parents.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Working parents Total + ordinal: 0 + row_number: 115 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.working_parents.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.working_parents.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.working_parents.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Working parents Total + ordinal: 0 + row_number: 115 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.working_parents.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.working_parents.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.working_parents.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Working parents Total + ordinal: 0 + row_number: 115 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.working_parents.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.working_parents.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.working_parents.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Working parents Total + ordinal: 0 + row_number: 115 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.working_parents.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.working_parents.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.working_parents.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Working parents Total + ordinal: 0 + row_number: 115 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Working parents + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.working_parents.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2018.working_parents.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.working_parents.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Working parents 3 years + ordinal: 0 + row_number: 120 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.working_parents.3_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.working_parents.3_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.working_parents.3_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Working parents 3 years + ordinal: 0 + row_number: 120 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.working_parents.3_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.working_parents.3_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.working_parents.3_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Working parents 3 years + ordinal: 0 + row_number: 120 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.working_parents.3_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.working_parents.3_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.working_parents.3_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Working parents 3 years + ordinal: 0 + row_number: 120 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.working_parents.3_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.working_parents.3_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.working_parents.3_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Working parents 3 years + ordinal: 0 + row_number: 120 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Working parents + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.working_parents.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2018.working_parents.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.working_parents.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Working parents 4 years + ordinal: 0 + row_number: 121 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.working_parents.4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.working_parents.4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.working_parents.4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Working parents 4 years + ordinal: 0 + row_number: 121 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.working_parents.4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.working_parents.4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.working_parents.4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Working parents 4 years + ordinal: 0 + row_number: 121 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.working_parents.4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.working_parents.4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.working_parents.4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Working parents 4 years + ordinal: 0 + row_number: 121 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.working_parents.4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.working_parents.4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.working_parents.4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Working parents 4 years + ordinal: 0 + row_number: 121 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Working parents + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.working_parents.3_to_4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2018.working_parents.3_to_4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.working_parents.3_to_4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Working parents 3 to 4 years + ordinal: 0 + row_number: 122 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.working_parents.3_to_4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.working_parents.3_to_4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.working_parents.3_to_4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Working parents 3 to 4 years + ordinal: 0 + row_number: 122 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.working_parents.3_to_4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.working_parents.3_to_4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.working_parents.3_to_4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Working parents 3 to 4 years + ordinal: 0 + row_number: 122 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.working_parents.3_to_4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.working_parents.3_to_4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.working_parents.3_to_4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Working parents 3 to 4 years + ordinal: 0 + row_number: 122 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.working_parents.3_to_4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.working_parents.3_to_4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.working_parents.3_to_4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Working parents 3 to 4 years + ordinal: 0 + row_number: 122 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Working parents + label: entitlement type + - column: G + expected_value: 3 to 4 years + label: age + filters: + entitlement_type: Working parents + age: 3 to 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Working parents + label: entitlement type + - variable: age + operator: == + value: 3 to 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 123 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 123 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 123 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: universal_credit + label: eligibility basis + measures: + - measure_id: eligible_children_universal_credit_count + label: Estimated eligible children through Universal Credit + ordinal: 0 + column: M + source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + expected_column_header_row: 1 + expected_column_header: eligible_children_universal_credit_count + concept: dfe.funded_childcare_eligible_children_universal_credit + source_concept: dfe.estimated_eligible_children_universal_credit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 123 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: legacy_benefit + label: eligibility basis + measures: + - measure_id: eligible_children_legacy_benefit_count + label: Estimated eligible children through legacy benefits + ordinal: 0 + column: N + source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + expected_column_header_row: 1 + expected_column_header: eligible_children_legacy_benefit_count + concept: dfe.funded_childcare_eligible_children_legacy_benefit + source_concept: dfe.estimated_eligible_children_legacy_benefit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 123 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 123 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 123 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.2_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.2_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.2_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 124 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.2_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.2_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.2_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 124 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 124 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: universal_credit + label: eligibility basis + measures: + - measure_id: eligible_children_universal_credit_count + label: Estimated eligible children through Universal Credit + ordinal: 0 + column: M + source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + expected_column_header_row: 1 + expected_column_header: eligible_children_universal_credit_count + concept: dfe.funded_childcare_eligible_children_universal_credit + source_concept: dfe.estimated_eligible_children_universal_credit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 124 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: legacy_benefit + label: eligibility basis + measures: + - measure_id: eligible_children_legacy_benefit_count + label: Estimated eligible children through legacy benefits + ordinal: 0 + column: N + source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + expected_column_header_row: 1 + expected_column_header: eligible_children_legacy_benefit_count + concept: dfe.funded_childcare_eligible_children_legacy_benefit + source_concept: dfe.estimated_eligible_children_legacy_benefit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 124 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.2_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.2_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.2_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 124 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.2_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.2_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.early_learning_for_2_year_olds.2_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 124 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal Total + ordinal: 0 + row_number: 125 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.total.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.total.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.total.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal Total + ordinal: 0 + row_number: 125 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.total.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.total.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.total.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal Total + ordinal: 0 + row_number: 125 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal Total + ordinal: 0 + row_number: 125 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.total.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.total.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.total.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal Total + ordinal: 0 + row_number: 125 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal Total + ordinal: 0 + row_number: 125 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.total.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.total.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.total.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal Total + ordinal: 0 + row_number: 125 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal Total + ordinal: 0 + row_number: 125 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal Total + ordinal: 0 + row_number: 125 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal 3 years + ordinal: 0 + row_number: 126 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.3_years.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.3_years.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.3_years.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal 3 years + ordinal: 0 + row_number: 126 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.3_years.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.3_years.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.3_years.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal 3 years + ordinal: 0 + row_number: 126 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.3_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.3_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.3_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal 3 years + ordinal: 0 + row_number: 126 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.3_years.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.3_years.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.3_years.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal 3 years + ordinal: 0 + row_number: 126 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.3_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.3_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.3_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal 3 years + ordinal: 0 + row_number: 126 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.3_years.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.3_years.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.3_years.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal 3 years + ordinal: 0 + row_number: 126 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.3_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.3_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.3_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal 3 years + ordinal: 0 + row_number: 126 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.3_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.3_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.3_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal 3 years + ordinal: 0 + row_number: 126 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal 4 years + ordinal: 0 + row_number: 127 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.4_years.registered_children_nursery_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.4_years.registered_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.4_years.registered_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal 4 years + ordinal: 0 + row_number: 127 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: nursery + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_children_nursery_count + label: Registered children in nursery provision + ordinal: 0 + column: I + source_column_id: registered_children_nursery_count + source_column_dimensions: + registration_basis: registered_children + provision: nursery + expected_column_header_row: 1 + expected_column_header: registered_children_nursery_count + concept: dfe.funded_childcare_registered_children_nursery + source_concept: dfe.number_of_registered_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.4_years.registered_children_reception_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.4_years.registered_children_reception_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.4_years.registered_children_reception_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal 4 years + ordinal: 0 + row_number: 127 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: reception + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + - variable: provision + operator: == + value: reception + label: provision + measures: + - measure_id: registered_children_reception_count + label: Registered children in reception + ordinal: 0 + column: J + source_column_id: registered_children_reception_count + source_column_dimensions: + registration_basis: registered_children + provision: reception + expected_column_header_row: 1 + expected_column_header: registered_children_reception_count + concept: dfe.funded_childcare_registered_children_reception + source_concept: dfe.number_of_registered_children_reception + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal 4 years + ordinal: 0 + row_number: 127 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.4_years.eligible_children_nursery_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.4_years.eligible_children_nursery_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.4_years.eligible_children_nursery_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal 4 years + ordinal: 0 + row_number: 127 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: eligible_children_nursery_count + label: Estimated eligible children in nursery provision + ordinal: 0 + column: L + source_column_id: eligible_children_nursery_count + source_column_dimensions: + registration_basis: eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_nursery_count + concept: dfe.funded_childcare_eligible_children_nursery + source_concept: dfe.estimated_number_of_eligible_children_nursery + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal 4 years + ordinal: 0 + row_number: 127 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.4_years.registered_eligible_children_nursery_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.4_years.registered_eligible_children_nursery_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.4_years.registered_eligible_children_nursery_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal 4 years + ordinal: 0 + row_number: 127 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + - variable: provision + operator: == + value: nursery + label: provision + measures: + - measure_id: registered_eligible_children_nursery_percent + label: Estimated percentage of eligible nursery children registered + ordinal: 0 + column: P + source_column_id: registered_eligible_children_nursery_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: nursery + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_nursery_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_nursery + source_concept: dfe.estimated_percentage_of_eligible_nursery_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal 4 years + ordinal: 0 + row_number: 127 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2018.universal.4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2018.universal.4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2018.universal.4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2018-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2018 Universal 4 years + ordinal: 0 + row_number: 127 + expected_row_header_column: A + expected_row_header: 2018 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.total.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2017.total.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.total.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Total Total + ordinal: 0 + row_number: 128 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.total.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.total.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.total.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Total Total + ordinal: 0 + row_number: 128 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.total.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.total.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.total.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Total Total + ordinal: 0 + row_number: 128 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 137 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 137 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 137 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: universal_credit + label: eligibility basis + measures: + - measure_id: eligible_children_universal_credit_count + label: Estimated eligible children through Universal Credit + ordinal: 0 + column: M + source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + expected_column_header_row: 1 + expected_column_header: eligible_children_universal_credit_count + concept: dfe.funded_childcare_eligible_children_universal_credit + source_concept: dfe.estimated_eligible_children_universal_credit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 137 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: legacy_benefit + label: eligibility basis + measures: + - measure_id: eligible_children_legacy_benefit_count + label: Estimated eligible children through legacy benefits + ordinal: 0 + column: N + source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + expected_column_header_row: 1 + expected_column_header: eligible_children_legacy_benefit_count + concept: dfe.funded_childcare_eligible_children_legacy_benefit + source_concept: dfe.estimated_eligible_children_legacy_benefit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 137 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 137 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 137 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.2_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.2_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.2_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 138 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.2_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.2_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.2_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 138 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 138 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: universal_credit + label: eligibility basis + measures: + - measure_id: eligible_children_universal_credit_count + label: Estimated eligible children through Universal Credit + ordinal: 0 + column: M + source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + expected_column_header_row: 1 + expected_column_header: eligible_children_universal_credit_count + concept: dfe.funded_childcare_eligible_children_universal_credit + source_concept: dfe.estimated_eligible_children_universal_credit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 138 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: legacy_benefit + label: eligibility basis + measures: + - measure_id: eligible_children_legacy_benefit_count + label: Estimated eligible children through legacy benefits + ordinal: 0 + column: N + source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + expected_column_header_row: 1 + expected_column_header: eligible_children_legacy_benefit_count + concept: dfe.funded_childcare_eligible_children_legacy_benefit + source_concept: dfe.estimated_eligible_children_legacy_benefit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 138 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.2_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.2_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.2_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 138 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.2_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.2_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.early_learning_for_2_year_olds.2_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 138 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.universal.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2017.universal.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.universal.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Universal Total + ordinal: 0 + row_number: 139 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.universal.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.universal.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.universal.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Universal Total + ordinal: 0 + row_number: 139 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.universal.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.universal.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.universal.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Universal Total + ordinal: 0 + row_number: 139 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.universal.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.universal.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.universal.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Universal Total + ordinal: 0 + row_number: 139 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.universal.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.universal.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.universal.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Universal Total + ordinal: 0 + row_number: 139 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.universal.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2017.universal.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.universal.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Universal 3 years + ordinal: 0 + row_number: 140 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.universal.3_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.universal.3_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.universal.3_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Universal 3 years + ordinal: 0 + row_number: 140 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.universal.3_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.universal.3_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.universal.3_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Universal 3 years + ordinal: 0 + row_number: 140 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.universal.3_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.universal.3_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.universal.3_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Universal 3 years + ordinal: 0 + row_number: 140 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.universal.3_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.universal.3_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.universal.3_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Universal 3 years + ordinal: 0 + row_number: 140 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.universal.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2017.universal.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.universal.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Universal 4 years + ordinal: 0 + row_number: 141 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.universal.4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.universal.4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.universal.4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Universal 4 years + ordinal: 0 + row_number: 141 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.universal.4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.universal.4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.universal.4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Universal 4 years + ordinal: 0 + row_number: 141 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.universal.4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.universal.4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.universal.4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Universal 4 years + ordinal: 0 + row_number: 141 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2017.universal.4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2017.universal.4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2017.universal.4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2017-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2017 Universal 4 years + ordinal: 0 + row_number: 141 + expected_row_header_column: A + expected_row_header: 2017 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.total.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2016.total.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.total.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Total Total + ordinal: 0 + row_number: 142 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.total.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.total.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.total.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Total Total + ordinal: 0 + row_number: 142 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.total.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.total.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.total.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Total Total + ordinal: 0 + row_number: 142 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 151 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 151 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 151 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: universal_credit + label: eligibility basis + measures: + - measure_id: eligible_children_universal_credit_count + label: Estimated eligible children through Universal Credit + ordinal: 0 + column: M + source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + expected_column_header_row: 1 + expected_column_header: eligible_children_universal_credit_count + concept: dfe.funded_childcare_eligible_children_universal_credit + source_concept: dfe.estimated_eligible_children_universal_credit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 151 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: legacy_benefit + label: eligibility basis + measures: + - measure_id: eligible_children_legacy_benefit_count + label: Estimated eligible children through legacy benefits + ordinal: 0 + column: N + source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + expected_column_header_row: 1 + expected_column_header: eligible_children_legacy_benefit_count + concept: dfe.funded_childcare_eligible_children_legacy_benefit + source_concept: dfe.estimated_eligible_children_legacy_benefit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 151 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 151 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 151 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.2_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.2_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.2_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 152 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.2_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.2_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.2_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 152 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 152 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: universal_credit + label: eligibility basis + measures: + - measure_id: eligible_children_universal_credit_count + label: Estimated eligible children through Universal Credit + ordinal: 0 + column: M + source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + expected_column_header_row: 1 + expected_column_header: eligible_children_universal_credit_count + concept: dfe.funded_childcare_eligible_children_universal_credit + source_concept: dfe.estimated_eligible_children_universal_credit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 152 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: legacy_benefit + label: eligibility basis + measures: + - measure_id: eligible_children_legacy_benefit_count + label: Estimated eligible children through legacy benefits + ordinal: 0 + column: N + source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + expected_column_header_row: 1 + expected_column_header: eligible_children_legacy_benefit_count + concept: dfe.funded_childcare_eligible_children_legacy_benefit + source_concept: dfe.estimated_eligible_children_legacy_benefit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 152 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.2_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.2_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.2_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 152 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.2_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.2_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.early_learning_for_2_year_olds.2_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 152 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.universal.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2016.universal.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.universal.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Universal Total + ordinal: 0 + row_number: 153 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.universal.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.universal.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.universal.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Universal Total + ordinal: 0 + row_number: 153 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.universal.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.universal.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.universal.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Universal Total + ordinal: 0 + row_number: 153 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.universal.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.universal.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.universal.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Universal Total + ordinal: 0 + row_number: 153 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.universal.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.universal.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.universal.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Universal Total + ordinal: 0 + row_number: 153 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.universal.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2016.universal.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.universal.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Universal 3 years + ordinal: 0 + row_number: 154 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.universal.3_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.universal.3_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.universal.3_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Universal 3 years + ordinal: 0 + row_number: 154 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.universal.3_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.universal.3_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.universal.3_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Universal 3 years + ordinal: 0 + row_number: 154 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.universal.3_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.universal.3_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.universal.3_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Universal 3 years + ordinal: 0 + row_number: 154 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.universal.3_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.universal.3_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.universal.3_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Universal 3 years + ordinal: 0 + row_number: 154 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.universal.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2016.universal.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.universal.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Universal 4 years + ordinal: 0 + row_number: 155 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.universal.4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.universal.4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.universal.4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Universal 4 years + ordinal: 0 + row_number: 155 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.universal.4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.universal.4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.universal.4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Universal 4 years + ordinal: 0 + row_number: 155 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.universal.4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.universal.4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.universal.4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Universal 4 years + ordinal: 0 + row_number: 155 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2016.universal.4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2016.universal.4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2016.universal.4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2016-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2016 Universal 4 years + ordinal: 0 + row_number: 155 + expected_row_header_column: A + expected_row_header: 2016 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.total.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2015.total.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.total.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Total Total + ordinal: 0 + row_number: 156 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.total.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.total.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.total.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Total Total + ordinal: 0 + row_number: 156 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.total.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.total.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.total.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Total Total + ordinal: 0 + row_number: 156 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 165 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 165 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.total.eligible_children_universal_credit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 165 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: universal_credit + label: eligibility basis + measures: + - measure_id: eligible_children_universal_credit_count + label: Estimated eligible children through Universal Credit + ordinal: 0 + column: M + source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + expected_column_header_row: 1 + expected_column_header: eligible_children_universal_credit_count + concept: dfe.funded_childcare_eligible_children_universal_credit + source_concept: dfe.estimated_eligible_children_universal_credit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.total.eligible_children_legacy_benefit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 165 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: legacy_benefit + label: eligibility basis + measures: + - measure_id: eligible_children_legacy_benefit_count + label: Estimated eligible children through legacy benefits + ordinal: 0 + column: N + source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + expected_column_header_row: 1 + expected_column_header: eligible_children_legacy_benefit_count + concept: dfe.funded_childcare_eligible_children_legacy_benefit + source_concept: dfe.estimated_eligible_children_legacy_benefit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 165 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 165 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Early learning for 2-year-olds Total + ordinal: 0 + row_number: 165 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.2_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.2_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.2_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 166 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.2_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.2_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.2_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 166 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.2_years.eligible_children_universal_credit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 166 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: universal_credit + label: eligibility basis + measures: + - measure_id: eligible_children_universal_credit_count + label: Estimated eligible children through Universal Credit + ordinal: 0 + column: M + source_column_id: eligible_children_universal_credit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: universal_credit + expected_column_header_row: 1 + expected_column_header: eligible_children_universal_credit_count + concept: dfe.funded_childcare_eligible_children_universal_credit + source_concept: dfe.estimated_eligible_children_universal_credit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.2_years.eligible_children_legacy_benefit_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 166 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + - variable: eligibility_basis + operator: == + value: legacy_benefit + label: eligibility basis + measures: + - measure_id: eligible_children_legacy_benefit_count + label: Estimated eligible children through legacy benefits + ordinal: 0 + column: N + source_column_id: eligible_children_legacy_benefit_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: legacy_benefit + expected_column_header_row: 1 + expected_column_header: eligible_children_legacy_benefit_count + concept: dfe.funded_childcare_eligible_children_legacy_benefit + source_concept: dfe.estimated_eligible_children_legacy_benefit + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.2_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 166 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.2_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.2_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.2_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 166 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.2_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.2_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.early_learning_for_2_year_olds.2_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Early learning for 2-year-olds 2 years + ordinal: 0 + row_number: 166 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Early learning for 2-year-olds + label: entitlement type + - column: G + expected_value: 2 years + label: age + filters: + entitlement_type: Early learning for 2-year-olds + age: 2 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Early learning for 2-year-olds + label: entitlement type + - variable: age + operator: == + value: 2 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.universal.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2015.universal.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.universal.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Universal Total + ordinal: 0 + row_number: 167 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.universal.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.universal.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.universal.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Universal Total + ordinal: 0 + row_number: 167 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.universal.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.universal.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.universal.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Universal Total + ordinal: 0 + row_number: 167 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.universal.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.universal.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.universal.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Universal Total + ordinal: 0 + row_number: 167 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.universal.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.universal.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.universal.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Universal Total + ordinal: 0 + row_number: 167 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.universal.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2015.universal.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.universal.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Universal 3 years + ordinal: 0 + row_number: 168 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.universal.3_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.universal.3_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.universal.3_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Universal 3 years + ordinal: 0 + row_number: 168 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.universal.3_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.universal.3_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.universal.3_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Universal 3 years + ordinal: 0 + row_number: 168 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.universal.3_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.universal.3_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.universal.3_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Universal 3 years + ordinal: 0 + row_number: 168 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.universal.3_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.universal.3_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.universal.3_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Universal 3 years + ordinal: 0 + row_number: 168 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.universal.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2015.universal.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.universal.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Universal 4 years + ordinal: 0 + row_number: 169 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.universal.4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.universal.4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.universal.4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Universal 4 years + ordinal: 0 + row_number: 169 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.universal.4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.universal.4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.universal.4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Universal 4 years + ordinal: 0 + row_number: 169 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.universal.4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.universal.4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.universal.4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Universal 4 years + ordinal: 0 + row_number: 169 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2015.universal.4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2015.universal.4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2015.universal.4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2015-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2015 Universal 4 years + ordinal: 0 + row_number: 169 + expected_row_header_column: A + expected_row_header: 2015 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2014.total.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2014.total.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2014.total.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2014-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2014 Total Total + ordinal: 0 + row_number: 170 + expected_row_header_column: A + expected_row_header: 2014 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2014.total.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2014.total.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2014.total.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2014-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2014 Total Total + ordinal: 0 + row_number: 170 + expected_row_header_column: A + expected_row_header: 2014 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2014.total.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2014.total.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2014.total.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2014-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2014 Total Total + ordinal: 0 + row_number: 170 + expected_row_header_column: A + expected_row_header: 2014 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2014.universal.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2014.universal.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2014.universal.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2014-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2014 Universal Total + ordinal: 0 + row_number: 181 + expected_row_header_column: A + expected_row_header: 2014 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2014.universal.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2014.universal.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2014.universal.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2014-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2014 Universal Total + ordinal: 0 + row_number: 181 + expected_row_header_column: A + expected_row_header: 2014 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2014.universal.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2014.universal.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2014.universal.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2014-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2014 Universal Total + ordinal: 0 + row_number: 181 + expected_row_header_column: A + expected_row_header: 2014 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2014.universal.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2014.universal.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2014.universal.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2014-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2014 Universal Total + ordinal: 0 + row_number: 181 + expected_row_header_column: A + expected_row_header: 2014 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2014.universal.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2014.universal.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2014.universal.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2014-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2014 Universal Total + ordinal: 0 + row_number: 181 + expected_row_header_column: A + expected_row_header: 2014 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2014.universal.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2014.universal.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2014.universal.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2014-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2014 Universal 3 years + ordinal: 0 + row_number: 182 + expected_row_header_column: A + expected_row_header: 2014 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2014.universal.3_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2014.universal.3_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2014.universal.3_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2014-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2014 Universal 3 years + ordinal: 0 + row_number: 182 + expected_row_header_column: A + expected_row_header: 2014 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2014.universal.3_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2014.universal.3_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2014.universal.3_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2014-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2014 Universal 3 years + ordinal: 0 + row_number: 182 + expected_row_header_column: A + expected_row_header: 2014 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2014.universal.3_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2014.universal.3_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2014.universal.3_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2014-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2014 Universal 3 years + ordinal: 0 + row_number: 182 + expected_row_header_column: A + expected_row_header: 2014 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2014.universal.3_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2014.universal.3_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2014.universal.3_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2014-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2014 Universal 3 years + ordinal: 0 + row_number: 182 + expected_row_header_column: A + expected_row_header: 2014 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2014.universal.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2014.universal.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2014.universal.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2014-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2014 Universal 4 years + ordinal: 0 + row_number: 183 + expected_row_header_column: A + expected_row_header: 2014 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2014.universal.4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2014.universal.4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2014.universal.4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2014-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2014 Universal 4 years + ordinal: 0 + row_number: 183 + expected_row_header_column: A + expected_row_header: 2014 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2014.universal.4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2014.universal.4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2014.universal.4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2014-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2014 Universal 4 years + ordinal: 0 + row_number: 183 + expected_row_header_column: A + expected_row_header: 2014 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2014.universal.4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2014.universal.4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2014.universal.4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2014-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2014 Universal 4 years + ordinal: 0 + row_number: 183 + expected_row_header_column: A + expected_row_header: 2014 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2014.universal.4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2014.universal.4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2014.universal.4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2014-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2014 Universal 4 years + ordinal: 0 + row_number: 183 + expected_row_header_column: A + expected_row_header: 2014 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2013.total.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2013.total.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2013.total.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2013-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2013 Total Total + ordinal: 0 + row_number: 184 + expected_row_header_column: A + expected_row_header: 2013 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2013.total.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2013.total.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2013.total.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2013-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2013 Total Total + ordinal: 0 + row_number: 184 + expected_row_header_column: A + expected_row_header: 2013 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2013.total.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2013.total.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2013.total.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2013-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2013 Total Total + ordinal: 0 + row_number: 184 + expected_row_header_column: A + expected_row_header: 2013 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2013.universal.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2013.universal.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2013.universal.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2013-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2013 Universal Total + ordinal: 0 + row_number: 195 + expected_row_header_column: A + expected_row_header: 2013 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2013.universal.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2013.universal.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2013.universal.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2013-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2013 Universal Total + ordinal: 0 + row_number: 195 + expected_row_header_column: A + expected_row_header: 2013 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2013.universal.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2013.universal.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2013.universal.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2013-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2013 Universal Total + ordinal: 0 + row_number: 195 + expected_row_header_column: A + expected_row_header: 2013 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2013.universal.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2013.universal.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2013.universal.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2013-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2013 Universal Total + ordinal: 0 + row_number: 195 + expected_row_header_column: A + expected_row_header: 2013 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2013.universal.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2013.universal.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2013.universal.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2013-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2013 Universal Total + ordinal: 0 + row_number: 195 + expected_row_header_column: A + expected_row_header: 2013 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2013.universal.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2013.universal.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2013.universal.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2013-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2013 Universal 3 years + ordinal: 0 + row_number: 196 + expected_row_header_column: A + expected_row_header: 2013 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2013.universal.3_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2013.universal.3_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2013.universal.3_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2013-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2013 Universal 3 years + ordinal: 0 + row_number: 196 + expected_row_header_column: A + expected_row_header: 2013 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2013.universal.3_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2013.universal.3_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2013.universal.3_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2013-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2013 Universal 3 years + ordinal: 0 + row_number: 196 + expected_row_header_column: A + expected_row_header: 2013 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2013.universal.3_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2013.universal.3_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2013.universal.3_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2013-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2013 Universal 3 years + ordinal: 0 + row_number: 196 + expected_row_header_column: A + expected_row_header: 2013 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2013.universal.3_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2013.universal.3_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2013.universal.3_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2013-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2013 Universal 3 years + ordinal: 0 + row_number: 196 + expected_row_header_column: A + expected_row_header: 2013 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2013.universal.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2013.universal.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2013.universal.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2013-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2013 Universal 4 years + ordinal: 0 + row_number: 197 + expected_row_header_column: A + expected_row_header: 2013 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2013.universal.4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2013.universal.4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2013.universal.4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2013-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2013 Universal 4 years + ordinal: 0 + row_number: 197 + expected_row_header_column: A + expected_row_header: 2013 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2013.universal.4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2013.universal.4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2013.universal.4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2013-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2013 Universal 4 years + ordinal: 0 + row_number: 197 + expected_row_header_column: A + expected_row_header: 2013 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2013.universal.4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2013.universal.4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2013.universal.4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2013-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2013 Universal 4 years + ordinal: 0 + row_number: 197 + expected_row_header_column: A + expected_row_header: 2013 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2013.universal.4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2013.universal.4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2013.universal.4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2013-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2013 Universal 4 years + ordinal: 0 + row_number: 197 + expected_row_header_column: A + expected_row_header: 2013 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2012.total.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2012.total.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2012.total.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2012-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2012 Total Total + ordinal: 0 + row_number: 198 + expected_row_header_column: A + expected_row_header: 2012 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2012.total.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2012.total.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2012.total.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2012-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2012 Total Total + ordinal: 0 + row_number: 198 + expected_row_header_column: A + expected_row_header: 2012 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2012.total.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2012.total.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2012.total.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2012-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2012 Total Total + ordinal: 0 + row_number: 198 + expected_row_header_column: A + expected_row_header: 2012 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2012.universal.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2012.universal.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2012.universal.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2012-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2012 Universal Total + ordinal: 0 + row_number: 209 + expected_row_header_column: A + expected_row_header: 2012 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2012.universal.total.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2012.universal.total.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2012.universal.total.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2012-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2012 Universal Total + ordinal: 0 + row_number: 209 + expected_row_header_column: A + expected_row_header: 2012 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2012.universal.total.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2012.universal.total.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2012.universal.total.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2012-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2012 Universal Total + ordinal: 0 + row_number: 209 + expected_row_header_column: A + expected_row_header: 2012 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2012.universal.total.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2012.universal.total.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2012.universal.total.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2012-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2012 Universal Total + ordinal: 0 + row_number: 209 + expected_row_header_column: A + expected_row_header: 2012 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2012.universal.total.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2012.universal.total.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2012.universal.total.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2012-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2012 Universal Total + ordinal: 0 + row_number: 209 + expected_row_header_column: A + expected_row_header: 2012 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2012.universal.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2012.universal.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2012.universal.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2012-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2012 Universal 3 years + ordinal: 0 + row_number: 210 + expected_row_header_column: A + expected_row_header: 2012 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2012.universal.3_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2012.universal.3_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2012.universal.3_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2012-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2012 Universal 3 years + ordinal: 0 + row_number: 210 + expected_row_header_column: A + expected_row_header: 2012 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2012.universal.3_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2012.universal.3_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2012.universal.3_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2012-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2012 Universal 3 years + ordinal: 0 + row_number: 210 + expected_row_header_column: A + expected_row_header: 2012 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2012.universal.3_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2012.universal.3_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2012.universal.3_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2012-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2012 Universal 3 years + ordinal: 0 + row_number: 210 + expected_row_header_column: A + expected_row_header: 2012 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2012.universal.3_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2012.universal.3_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2012.universal.3_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2012-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2012 Universal 3 years + ordinal: 0 + row_number: 210 + expected_row_header_column: A + expected_row_header: 2012 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2012.universal.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2012.universal.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2012.universal.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2012-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2012 Universal 4 years + ordinal: 0 + row_number: 211 + expected_row_header_column: A + expected_row_header: 2012 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2012.universal.4_years.eligible_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2012.universal.4_years.eligible_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2012.universal.4_years.eligible_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2012-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: estimated_eligible_child + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2012 Universal 4 years + ordinal: 0 + row_number: 211 + expected_row_header_column: A + expected_row_header: 2012 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: eligible_children + label: registration basis + measures: + - measure_id: eligible_children_count + label: Estimated eligible children + ordinal: 0 + column: K + source_column_id: eligible_children_count + source_column_dimensions: + registration_basis: eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: eligible_children_count + concept: dfe.funded_childcare_eligible_children_total + source_concept: dfe.estimated_number_of_eligible_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2012.universal.4_years.registered_eligible_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2012.universal.4_years.registered_eligible_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2012.universal.4_years.registered_eligible_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2012-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_estimated_eligibility_universe + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2012 Universal 4 years + ordinal: 0 + row_number: 211 + expected_row_header_column: A + expected_row_header: 2012 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_eligible_children + label: registration basis + measures: + - measure_id: registered_eligible_children_percent + label: Estimated percentage of eligible children registered + ordinal: 0 + column: O + source_column_id: registered_eligible_children_percent + source_column_dimensions: + registration_basis: registered_eligible_children + provision: all + eligibility_basis: all + expected_column_header_row: 1 + expected_column_header: registered_eligible_children_percent + concept: dfe.funded_childcare_eligible_children_registered_percentage_total + source_concept: dfe.estimated_percentage_of_eligible_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2012.universal.4_years.all_children_count + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2012.universal.4_years.all_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2012.universal.4_years.all_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2012-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2012 Universal 4 years + ordinal: 0 + row_number: 211 + expected_row_header_column: A + expected_row_header: 2012 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: all_children_count + label: Estimated all children + ordinal: 0 + column: Q + source_column_id: all_children_count + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: all_children_count + concept: dfe.funded_childcare_estimated_all_children + source_concept: dfe.estimated_number_of_all_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2012.universal.4_years.registered_all_children_percent + provenance_class: model_output + record_set_spec_id: dfe.funded_childcare.release2026.year2012.universal.4_years.registered_all_children_percent.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2012.universal.4_years.registered_all_children_percent + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2012-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_in_population_estimate + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2012 Universal 4 years + ordinal: 0 + row_number: 211 + expected_row_header_column: A + expected_row_header: 2012 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: all_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: all_children + label: registration basis + measures: + - measure_id: registered_all_children_percent + label: Estimated percentage of all children registered + ordinal: 0 + column: R + source_column_id: registered_all_children_percent + source_column_dimensions: + registration_basis: all_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_all_children_percent + concept: dfe.funded_childcare_all_children_registered_percentage + source_concept: dfe.estimated_percentage_of_all_children_registered + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. Eligible-child and population estimates + use survey-based inputs; DfE notes that percentages can be revised. Estimated denominators remain + distinct from administrative registered-child counts. + unit: percent + aggregation: share + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2011.total.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2011.total.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2011.total.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2011-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2011 Total Total + ordinal: 0 + row_number: 212 + expected_row_header_column: A + expected_row_header: 2011 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Total + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Total + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Total + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2011.universal.total.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2011.universal.total.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2011.universal.total.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2011-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2011 Universal Total + ordinal: 0 + row_number: 223 + expected_row_header_column: A + expected_row_header: 2011 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: Total + label: age + filters: + entitlement_type: Universal + age: Total + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: Total + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2011.universal.3_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2011.universal.3_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2011.universal.3_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2011-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2011 Universal 3 years + ordinal: 0 + row_number: 224 + expected_row_header_column: A + expected_row_header: 2011 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 3 years + label: age + filters: + entitlement_type: Universal + age: 3 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 3 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: dfe.funded_childcare.release2026.year2011.universal.4_years.registered_children_count + provenance_class: administrative + record_set_spec_id: dfe.funded_childcare.release2026.year2011.universal.4_years.registered_children_count.v1 + source_record_id_prefix: dfe.funded_childcare.release2026.year2011.universal.4_years.registered_children_count + sheet_name: headline_figures_feeac_2011_2026 + period_type: month + period: 2011-01 + geography_id: E92000001 + geography_level: country + geography_name: England + geography_vintage: current + entity: person + entity_role: child_registered_for_funded_childcare + domain: funded_early_education_and_childcare + groupby_dimension: dfe.funded_childcare.headline_cell + rows: + - value_id: source_row + label: 2011 Universal 4 years + ordinal: 0 + row_number: 225 + expected_row_header_column: A + expected_row_header: 2011 + table_record_kind: detail + guard_cells: + - column: B + expected_value: Reporting year + label: time identifier + - column: C + expected_value: National + label: geographic level + - column: D + expected_value: E92000001 + label: country code + - column: E + expected_value: England + label: country name + - column: F + expected_value: Universal + label: entitlement type + - column: G + expected_value: 4 years + label: age + filters: + entitlement_type: Universal + age: 4 years + registration_basis: registered_children + provision: all + constraints: + - variable: entitlement_type + operator: == + value: Universal + label: entitlement type + - variable: age + operator: == + value: 4 years + label: age + - variable: registration_basis + operator: == + value: registered_children + label: registration basis + measures: + - measure_id: registered_children_count + label: Registered children + ordinal: 0 + column: H + source_column_id: registered_children_count + source_column_dimensions: + registration_basis: registered_children + provision: all + expected_column_header_row: 1 + expected_column_header: registered_children_count + concept: dfe.funded_childcare_registered_children_total + source_concept: dfe.number_of_registered_children + concept_relation: source_label + concept_authority: dfe + concept_evidence_url: https://explore-education-statistics.service.gov.uk/data-catalogue/data-set/6350d24e-89d9-4ad2-a986-923749c47c5c + concept_evidence_notes: DfE reports third-week-of-January stocks. All 3- and 4-year-olds registered + for the working-parent entitlement are also included in universal counts, so Chronicle preserves + the overlapping publisher universes and does not subtract them. + unit: count + aggregation: sum + expected_cell_type: number diff --git a/packages/hmrc/tax_free_childcare_march_2026/source_package.yaml b/packages/hmrc/tax_free_childcare_march_2026/source_package.yaml new file mode 100644 index 0000000..1caaca2 --- /dev/null +++ b/packages/hmrc/tax_free_childcare_march_2026/source_package.yaml @@ -0,0 +1,8127 @@ +schema_version: ledger.source_package.v1 +package_id: hmrc-tax-free-childcare-march-2026 +label: HMRC Tax-Free Childcare annual and monthly child account activity and government top-up, April + 2017 to March 2026 +artifact: + source_name: hmrc + source_table: 'Tax-Free Childcare Statistics March 2026, Table 2: Numbers of Children with Open and + Used Tax-Free Childcare Accounts and Government Top-up' + resource_package: db + resource_directory: data/hmrc/tax_free_childcare_march_2026 + manifest: manifest.yaml + vintage: march_2026 + extracted_at: '2026-09-01' + extraction_method: ODS Table 2 guarded used-range parse + parser: ods_used_range + sheet_name: Table_2 + artifact_year: 2026 +record_sets: +- record_set_id: hmrc.tfc.march_2026.fy2017.annual_unique_children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.fy2017.annual_unique_children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.fy2017.annual_unique_children + sheet_name: Table_2 + period_type: fiscal_year + period: 2017 + period_coverage: + start_date: '2017-04-01' + end_date: '2018-03-31' + basis: fiscal + source_period_label: 2017-18 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: 2017-18 + ordinal: 0 + row_number: 4 + expected_row_header_column: A + expected_row_header: 2017-18 + table_record_kind: total + filters: + account_status: used + count_basis: annual_unique_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: annual_unique_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: annual_unique_children_with_used_accounts + label: Annual-unique children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_annual_unique + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.fy2017.government_top_up + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.fy2017.government_top_up.v1 + source_record_id_prefix: hmrc.tfc.march_2026.fy2017.government_top_up + sheet_name: Table_2 + period_type: fiscal_year + period: 2017 + period_coverage: + start_date: '2017-04-01' + end_date: '2018-03-31' + basis: fiscal + source_period_label: 2017-18 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: government + entity_role: tax_free_childcare_funder + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.government_top_up + rows: + - value_id: source_row + label: 2017-18 + ordinal: 0 + row_number: 4 + expected_row_header_column: A + expected_row_header: 2017-18 + table_record_kind: total + filters: + flow_type: government_top_up + flow_basis: sum_of_12_monthly_spending_flows + source_release: 2026 + constraints: + - variable: flow_type + operator: == + value: government_top_up + label: flow type + - variable: flow_basis + operator: == + value: sum_of_12_monthly_spending_flows + label: flow basis + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: government_top_up + label: Tax-Free Childcare government top-up paid + ordinal: 0 + column: H + expected_column_header_row: 3 + expected_column_header: "Government top-up (\xA3m)" + concept: hmrc.tfc_government_top_up + source_concept: hmrc.tax_free_childcare.government_top_up_gbp_million + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines annual government top-up as the sum of the 12 published monthly + spending flows. Chronicle scales the source's GBP millions to GBP and does not combine it with account + counts. + unit: gbp + aggregation: sum + expected_cell_type: number + value_scale: 1000000 +- record_set_id: hmrc.tfc.march_2026.fy2018.annual_unique_children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.fy2018.annual_unique_children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.fy2018.annual_unique_children + sheet_name: Table_2 + period_type: fiscal_year + period: 2018 + period_coverage: + start_date: '2018-04-01' + end_date: '2019-03-31' + basis: fiscal + source_period_label: 2018-19 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: 2018-19 + ordinal: 0 + row_number: 5 + expected_row_header_column: A + expected_row_header: 2018-19 + table_record_kind: total + filters: + account_status: used + count_basis: annual_unique_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: annual_unique_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: annual_unique_children_with_used_accounts + label: Annual-unique children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_annual_unique + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.fy2018.government_top_up + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.fy2018.government_top_up.v1 + source_record_id_prefix: hmrc.tfc.march_2026.fy2018.government_top_up + sheet_name: Table_2 + period_type: fiscal_year + period: 2018 + period_coverage: + start_date: '2018-04-01' + end_date: '2019-03-31' + basis: fiscal + source_period_label: 2018-19 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: government + entity_role: tax_free_childcare_funder + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.government_top_up + rows: + - value_id: source_row + label: 2018-19 + ordinal: 0 + row_number: 5 + expected_row_header_column: A + expected_row_header: 2018-19 + table_record_kind: total + filters: + flow_type: government_top_up + flow_basis: sum_of_12_monthly_spending_flows + source_release: 2026 + constraints: + - variable: flow_type + operator: == + value: government_top_up + label: flow type + - variable: flow_basis + operator: == + value: sum_of_12_monthly_spending_flows + label: flow basis + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: government_top_up + label: Tax-Free Childcare government top-up paid + ordinal: 0 + column: H + expected_column_header_row: 3 + expected_column_header: "Government top-up (\xA3m)" + concept: hmrc.tfc_government_top_up + source_concept: hmrc.tax_free_childcare.government_top_up_gbp_million + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines annual government top-up as the sum of the 12 published monthly + spending flows. Chronicle scales the source's GBP millions to GBP and does not combine it with account + counts. + unit: gbp + aggregation: sum + expected_cell_type: number + value_scale: 1000000 +- record_set_id: hmrc.tfc.march_2026.fy2019.annual_unique_children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.fy2019.annual_unique_children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.fy2019.annual_unique_children + sheet_name: Table_2 + period_type: fiscal_year + period: 2019 + period_coverage: + start_date: '2019-04-01' + end_date: '2020-03-31' + basis: fiscal + source_period_label: 2019-20 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: 2019-20 + ordinal: 0 + row_number: 6 + expected_row_header_column: A + expected_row_header: 2019-20 + table_record_kind: total + filters: + account_status: used + count_basis: annual_unique_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: annual_unique_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: annual_unique_children_with_used_accounts + label: Annual-unique children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_annual_unique + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.fy2019.government_top_up + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.fy2019.government_top_up.v1 + source_record_id_prefix: hmrc.tfc.march_2026.fy2019.government_top_up + sheet_name: Table_2 + period_type: fiscal_year + period: 2019 + period_coverage: + start_date: '2019-04-01' + end_date: '2020-03-31' + basis: fiscal + source_period_label: 2019-20 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: government + entity_role: tax_free_childcare_funder + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.government_top_up + rows: + - value_id: source_row + label: 2019-20 + ordinal: 0 + row_number: 6 + expected_row_header_column: A + expected_row_header: 2019-20 + table_record_kind: total + filters: + flow_type: government_top_up + flow_basis: sum_of_12_monthly_spending_flows + source_release: 2026 + constraints: + - variable: flow_type + operator: == + value: government_top_up + label: flow type + - variable: flow_basis + operator: == + value: sum_of_12_monthly_spending_flows + label: flow basis + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: government_top_up + label: Tax-Free Childcare government top-up paid + ordinal: 0 + column: H + expected_column_header_row: 3 + expected_column_header: "Government top-up (\xA3m)" + concept: hmrc.tfc_government_top_up + source_concept: hmrc.tax_free_childcare.government_top_up_gbp_million + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines annual government top-up as the sum of the 12 published monthly + spending flows. Chronicle scales the source's GBP millions to GBP and does not combine it with account + counts. + unit: gbp + aggregation: sum + expected_cell_type: number + value_scale: 1000000 +- record_set_id: hmrc.tfc.march_2026.fy2020.annual_unique_children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.fy2020.annual_unique_children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.fy2020.annual_unique_children + sheet_name: Table_2 + period_type: fiscal_year + period: 2020 + period_coverage: + start_date: '2020-04-01' + end_date: '2021-03-31' + basis: fiscal + source_period_label: 2020-21 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: 2020-21 + ordinal: 0 + row_number: 7 + expected_row_header_column: A + expected_row_header: 2020-21 + table_record_kind: total + filters: + account_status: used + count_basis: annual_unique_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: annual_unique_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: annual_unique_children_with_used_accounts + label: Annual-unique children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_annual_unique + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.fy2020.government_top_up + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.fy2020.government_top_up.v1 + source_record_id_prefix: hmrc.tfc.march_2026.fy2020.government_top_up + sheet_name: Table_2 + period_type: fiscal_year + period: 2020 + period_coverage: + start_date: '2020-04-01' + end_date: '2021-03-31' + basis: fiscal + source_period_label: 2020-21 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: government + entity_role: tax_free_childcare_funder + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.government_top_up + rows: + - value_id: source_row + label: 2020-21 + ordinal: 0 + row_number: 7 + expected_row_header_column: A + expected_row_header: 2020-21 + table_record_kind: total + filters: + flow_type: government_top_up + flow_basis: sum_of_12_monthly_spending_flows + source_release: 2026 + constraints: + - variable: flow_type + operator: == + value: government_top_up + label: flow type + - variable: flow_basis + operator: == + value: sum_of_12_monthly_spending_flows + label: flow basis + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: government_top_up + label: Tax-Free Childcare government top-up paid + ordinal: 0 + column: H + expected_column_header_row: 3 + expected_column_header: "Government top-up (\xA3m)" + concept: hmrc.tfc_government_top_up + source_concept: hmrc.tax_free_childcare.government_top_up_gbp_million + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines annual government top-up as the sum of the 12 published monthly + spending flows. Chronicle scales the source's GBP millions to GBP and does not combine it with account + counts. + unit: gbp + aggregation: sum + expected_cell_type: number + value_scale: 1000000 +- record_set_id: hmrc.tfc.march_2026.fy2021.annual_unique_children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.fy2021.annual_unique_children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.fy2021.annual_unique_children + sheet_name: Table_2 + period_type: fiscal_year + period: 2021 + period_coverage: + start_date: '2021-04-01' + end_date: '2022-03-31' + basis: fiscal + source_period_label: 2021-22 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: 2021-22 + ordinal: 0 + row_number: 8 + expected_row_header_column: A + expected_row_header: 2021-22 + table_record_kind: total + filters: + account_status: used + count_basis: annual_unique_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: annual_unique_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: annual_unique_children_with_used_accounts + label: Annual-unique children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_annual_unique + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.fy2021.government_top_up + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.fy2021.government_top_up.v1 + source_record_id_prefix: hmrc.tfc.march_2026.fy2021.government_top_up + sheet_name: Table_2 + period_type: fiscal_year + period: 2021 + period_coverage: + start_date: '2021-04-01' + end_date: '2022-03-31' + basis: fiscal + source_period_label: 2021-22 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: government + entity_role: tax_free_childcare_funder + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.government_top_up + rows: + - value_id: source_row + label: 2021-22 + ordinal: 0 + row_number: 8 + expected_row_header_column: A + expected_row_header: 2021-22 + table_record_kind: total + filters: + flow_type: government_top_up + flow_basis: sum_of_12_monthly_spending_flows + source_release: 2026 + constraints: + - variable: flow_type + operator: == + value: government_top_up + label: flow type + - variable: flow_basis + operator: == + value: sum_of_12_monthly_spending_flows + label: flow basis + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: government_top_up + label: Tax-Free Childcare government top-up paid + ordinal: 0 + column: H + expected_column_header_row: 3 + expected_column_header: "Government top-up (\xA3m)" + concept: hmrc.tfc_government_top_up + source_concept: hmrc.tax_free_childcare.government_top_up_gbp_million + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines annual government top-up as the sum of the 12 published monthly + spending flows. Chronicle scales the source's GBP millions to GBP and does not combine it with account + counts. + unit: gbp + aggregation: sum + expected_cell_type: number + value_scale: 1000000 +- record_set_id: hmrc.tfc.march_2026.fy2022.annual_unique_children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.fy2022.annual_unique_children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.fy2022.annual_unique_children + sheet_name: Table_2 + period_type: fiscal_year + period: 2022 + period_coverage: + start_date: '2022-04-01' + end_date: '2023-03-31' + basis: fiscal + source_period_label: 2022-23 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: 2022-23 + ordinal: 0 + row_number: 9 + expected_row_header_column: A + expected_row_header: 2022-23 + table_record_kind: total + filters: + account_status: used + count_basis: annual_unique_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: annual_unique_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: annual_unique_children_with_used_accounts + label: Annual-unique children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_annual_unique + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.fy2022.government_top_up + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.fy2022.government_top_up.v1 + source_record_id_prefix: hmrc.tfc.march_2026.fy2022.government_top_up + sheet_name: Table_2 + period_type: fiscal_year + period: 2022 + period_coverage: + start_date: '2022-04-01' + end_date: '2023-03-31' + basis: fiscal + source_period_label: 2022-23 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: government + entity_role: tax_free_childcare_funder + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.government_top_up + rows: + - value_id: source_row + label: 2022-23 + ordinal: 0 + row_number: 9 + expected_row_header_column: A + expected_row_header: 2022-23 + table_record_kind: total + filters: + flow_type: government_top_up + flow_basis: sum_of_12_monthly_spending_flows + source_release: 2026 + constraints: + - variable: flow_type + operator: == + value: government_top_up + label: flow type + - variable: flow_basis + operator: == + value: sum_of_12_monthly_spending_flows + label: flow basis + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: government_top_up + label: Tax-Free Childcare government top-up paid + ordinal: 0 + column: H + expected_column_header_row: 3 + expected_column_header: "Government top-up (\xA3m)" + concept: hmrc.tfc_government_top_up + source_concept: hmrc.tax_free_childcare.government_top_up_gbp_million + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines annual government top-up as the sum of the 12 published monthly + spending flows. Chronicle scales the source's GBP millions to GBP and does not combine it with account + counts. + unit: gbp + aggregation: sum + expected_cell_type: number + value_scale: 1000000 +- record_set_id: hmrc.tfc.march_2026.fy2023.annual_unique_children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.fy2023.annual_unique_children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.fy2023.annual_unique_children + sheet_name: Table_2 + period_type: fiscal_year + period: 2023 + period_coverage: + start_date: '2023-04-01' + end_date: '2024-03-31' + basis: fiscal + source_period_label: 2023-24 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: 2023-24 + ordinal: 0 + row_number: 10 + expected_row_header_column: A + expected_row_header: 2023-24 + table_record_kind: total + filters: + account_status: used + count_basis: annual_unique_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: annual_unique_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: annual_unique_children_with_used_accounts + label: Annual-unique children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_annual_unique + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.fy2023.government_top_up + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.fy2023.government_top_up.v1 + source_record_id_prefix: hmrc.tfc.march_2026.fy2023.government_top_up + sheet_name: Table_2 + period_type: fiscal_year + period: 2023 + period_coverage: + start_date: '2023-04-01' + end_date: '2024-03-31' + basis: fiscal + source_period_label: 2023-24 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: government + entity_role: tax_free_childcare_funder + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.government_top_up + rows: + - value_id: source_row + label: 2023-24 + ordinal: 0 + row_number: 10 + expected_row_header_column: A + expected_row_header: 2023-24 + table_record_kind: total + filters: + flow_type: government_top_up + flow_basis: sum_of_12_monthly_spending_flows + source_release: 2026 + constraints: + - variable: flow_type + operator: == + value: government_top_up + label: flow type + - variable: flow_basis + operator: == + value: sum_of_12_monthly_spending_flows + label: flow basis + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: government_top_up + label: Tax-Free Childcare government top-up paid + ordinal: 0 + column: H + expected_column_header_row: 3 + expected_column_header: "Government top-up (\xA3m)" + concept: hmrc.tfc_government_top_up + source_concept: hmrc.tax_free_childcare.government_top_up_gbp_million + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines annual government top-up as the sum of the 12 published monthly + spending flows. Chronicle scales the source's GBP millions to GBP and does not combine it with account + counts. + unit: gbp + aggregation: sum + expected_cell_type: number + value_scale: 1000000 +- record_set_id: hmrc.tfc.march_2026.fy2024.annual_unique_children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.fy2024.annual_unique_children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.fy2024.annual_unique_children + sheet_name: Table_2 + period_type: fiscal_year + period: 2024 + period_coverage: + start_date: '2024-04-01' + end_date: '2025-03-31' + basis: fiscal + source_period_label: 2024-25 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: 2024-25 + ordinal: 0 + row_number: 11 + expected_row_header_column: A + expected_row_header: 2024-25 + table_record_kind: total + filters: + account_status: used + count_basis: annual_unique_children + definition_regime: payment_and_open_at_reference_date + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: annual_unique_children + label: count basis + - variable: definition_regime + operator: == + value: payment_and_open_at_reference_date + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: annual_unique_children_with_used_accounts + label: Annual-unique children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_annual_unique + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.fy2024.government_top_up + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.fy2024.government_top_up.v1 + source_record_id_prefix: hmrc.tfc.march_2026.fy2024.government_top_up + sheet_name: Table_2 + period_type: fiscal_year + period: 2024 + period_coverage: + start_date: '2024-04-01' + end_date: '2025-03-31' + basis: fiscal + source_period_label: 2024-25 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: government + entity_role: tax_free_childcare_funder + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.government_top_up + rows: + - value_id: source_row + label: 2024-25 + ordinal: 0 + row_number: 11 + expected_row_header_column: A + expected_row_header: 2024-25 + table_record_kind: total + filters: + flow_type: government_top_up + flow_basis: sum_of_12_monthly_spending_flows + source_release: 2026 + constraints: + - variable: flow_type + operator: == + value: government_top_up + label: flow type + - variable: flow_basis + operator: == + value: sum_of_12_monthly_spending_flows + label: flow basis + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: government_top_up + label: Tax-Free Childcare government top-up paid + ordinal: 0 + column: H + expected_column_header_row: 3 + expected_column_header: "Government top-up (\xA3m)" + concept: hmrc.tfc_government_top_up + source_concept: hmrc.tax_free_childcare.government_top_up_gbp_million + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines annual government top-up as the sum of the 12 published monthly + spending flows. Chronicle scales the source's GBP millions to GBP and does not combine it with account + counts. + unit: gbp + aggregation: sum + expected_cell_type: number + value_scale: 1000000 +- record_set_id: hmrc.tfc.march_2026.fy2025.annual_unique_children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.fy2025.annual_unique_children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.fy2025.annual_unique_children + sheet_name: Table_2 + period_type: fiscal_year + period: 2025 + period_coverage: + start_date: '2025-04-01' + end_date: '2026-03-31' + basis: fiscal + source_period_label: 2025-26 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: 2025-26 + ordinal: 0 + row_number: 12 + expected_row_header_column: A + expected_row_header: 2025-26 + table_record_kind: total + filters: + account_status: used + count_basis: annual_unique_children + definition_regime: payment_and_open_at_reference_date + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: annual_unique_children + label: count basis + - variable: definition_regime + operator: == + value: payment_and_open_at_reference_date + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: annual_unique_children_with_used_accounts + label: Annual-unique children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_annual_unique + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.fy2025.government_top_up + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.fy2025.government_top_up.v1 + source_record_id_prefix: hmrc.tfc.march_2026.fy2025.government_top_up + sheet_name: Table_2 + period_type: fiscal_year + period: 2025 + period_coverage: + start_date: '2025-04-01' + end_date: '2026-03-31' + basis: fiscal + source_period_label: 2025-26 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: government + entity_role: tax_free_childcare_funder + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.government_top_up + rows: + - value_id: source_row + label: 2025-26 + ordinal: 0 + row_number: 12 + expected_row_header_column: A + expected_row_header: 2025-26 + table_record_kind: total + filters: + flow_type: government_top_up + flow_basis: sum_of_12_monthly_spending_flows + source_release: 2026 + constraints: + - variable: flow_type + operator: == + value: government_top_up + label: flow type + - variable: flow_basis + operator: == + value: sum_of_12_monthly_spending_flows + label: flow basis + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: government_top_up + label: Tax-Free Childcare government top-up paid + ordinal: 0 + column: H + expected_column_header_row: 3 + expected_column_header: "Government top-up (\xA3m)" + concept: hmrc.tfc_government_top_up + source_concept: hmrc.tax_free_childcare.government_top_up_gbp_million + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines annual government top-up as the sum of the 12 published monthly + spending flows. Chronicle scales the source's GBP millions to GBP and does not combine it with account + counts. + unit: gbp + aggregation: sum + expected_cell_type: number + value_scale: 1000000 +- record_set_id: hmrc.tfc.march_2026.month2017_04.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2017_04.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2017_04.children + sheet_name: Table_2 + period_type: month + period: 2017-04 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2017-04-03T00:00:00' + ordinal: 0 + row_number: 13 + expected_row_header_column: A + expected_row_header: '2017-04-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2017_05.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2017_05.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2017_05.children + sheet_name: Table_2 + period_type: month + period: 2017-05 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2017-05-03T00:00:00' + ordinal: 0 + row_number: 14 + expected_row_header_column: A + expected_row_header: '2017-05-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2017_06.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2017_06.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2017_06.children + sheet_name: Table_2 + period_type: month + period: 2017-06 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2017-06-03T00:00:00' + ordinal: 0 + row_number: 15 + expected_row_header_column: A + expected_row_header: '2017-06-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2017_07.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2017_07.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2017_07.children + sheet_name: Table_2 + period_type: month + period: 2017-07 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2017-07-03T00:00:00' + ordinal: 0 + row_number: 16 + expected_row_header_column: A + expected_row_header: '2017-07-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2017_08.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2017_08.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2017_08.children + sheet_name: Table_2 + period_type: month + period: 2017-08 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2017-08-03T00:00:00' + ordinal: 0 + row_number: 17 + expected_row_header_column: A + expected_row_header: '2017-08-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2017_09.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2017_09.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2017_09.children + sheet_name: Table_2 + period_type: month + period: 2017-09 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2017-09-03T00:00:00' + ordinal: 0 + row_number: 18 + expected_row_header_column: A + expected_row_header: '2017-09-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2017_10.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2017_10.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2017_10.children + sheet_name: Table_2 + period_type: month + period: 2017-10 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2017-10-03T00:00:00' + ordinal: 0 + row_number: 19 + expected_row_header_column: A + expected_row_header: '2017-10-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2017_11.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2017_11.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2017_11.children + sheet_name: Table_2 + period_type: month + period: 2017-11 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2017-11-03T00:00:00' + ordinal: 0 + row_number: 20 + expected_row_header_column: A + expected_row_header: '2017-11-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2017_12.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2017_12.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2017_12.children + sheet_name: Table_2 + period_type: month + period: 2017-12 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2017-12-03T00:00:00' + ordinal: 0 + row_number: 21 + expected_row_header_column: A + expected_row_header: '2017-12-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2018_01.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2018_01.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2018_01.children + sheet_name: Table_2 + period_type: month + period: 2018-01 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2018-01-03T00:00:00' + ordinal: 0 + row_number: 22 + expected_row_header_column: A + expected_row_header: '2018-01-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2018_02.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2018_02.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2018_02.children + sheet_name: Table_2 + period_type: month + period: 2018-02 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2018-02-03T00:00:00' + ordinal: 0 + row_number: 23 + expected_row_header_column: A + expected_row_header: '2018-02-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2018_03.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2018_03.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2018_03.children + sheet_name: Table_2 + period_type: month + period: 2018-03 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2018-03-03T00:00:00' + ordinal: 0 + row_number: 24 + expected_row_header_column: A + expected_row_header: '2018-03-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2018_04.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2018_04.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2018_04.children + sheet_name: Table_2 + period_type: month + period: 2018-04 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2018-04-03T00:00:00' + ordinal: 0 + row_number: 25 + expected_row_header_column: A + expected_row_header: '2018-04-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2018_05.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2018_05.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2018_05.children + sheet_name: Table_2 + period_type: month + period: 2018-05 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2018-05-03T00:00:00' + ordinal: 0 + row_number: 26 + expected_row_header_column: A + expected_row_header: '2018-05-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2018_06.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2018_06.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2018_06.children + sheet_name: Table_2 + period_type: month + period: 2018-06 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2018-06-03T00:00:00' + ordinal: 0 + row_number: 27 + expected_row_header_column: A + expected_row_header: '2018-06-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2018_07.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2018_07.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2018_07.children + sheet_name: Table_2 + period_type: month + period: 2018-07 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2018-07-03T00:00:00' + ordinal: 0 + row_number: 28 + expected_row_header_column: A + expected_row_header: '2018-07-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2018_08.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2018_08.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2018_08.children + sheet_name: Table_2 + period_type: month + period: 2018-08 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2018-08-03T00:00:00' + ordinal: 0 + row_number: 29 + expected_row_header_column: A + expected_row_header: '2018-08-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2018_09.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2018_09.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2018_09.children + sheet_name: Table_2 + period_type: month + period: 2018-09 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2018-09-03T00:00:00' + ordinal: 0 + row_number: 30 + expected_row_header_column: A + expected_row_header: '2018-09-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2018_10.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2018_10.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2018_10.children + sheet_name: Table_2 + period_type: month + period: 2018-10 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2018-10-03T00:00:00' + ordinal: 0 + row_number: 31 + expected_row_header_column: A + expected_row_header: '2018-10-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2018_11.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2018_11.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2018_11.children + sheet_name: Table_2 + period_type: month + period: 2018-11 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2018-11-03T00:00:00' + ordinal: 0 + row_number: 32 + expected_row_header_column: A + expected_row_header: '2018-11-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2018_12.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2018_12.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2018_12.children + sheet_name: Table_2 + period_type: month + period: 2018-12 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2018-12-03T00:00:00' + ordinal: 0 + row_number: 33 + expected_row_header_column: A + expected_row_header: '2018-12-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2019_01.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2019_01.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2019_01.children + sheet_name: Table_2 + period_type: month + period: 2019-01 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2019-01-03T00:00:00' + ordinal: 0 + row_number: 34 + expected_row_header_column: A + expected_row_header: '2019-01-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2019_02.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2019_02.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2019_02.children + sheet_name: Table_2 + period_type: month + period: 2019-02 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2019-02-03T00:00:00' + ordinal: 0 + row_number: 35 + expected_row_header_column: A + expected_row_header: '2019-02-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2019_03.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2019_03.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2019_03.children + sheet_name: Table_2 + period_type: month + period: 2019-03 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2019-03-03T00:00:00' + ordinal: 0 + row_number: 36 + expected_row_header_column: A + expected_row_header: '2019-03-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2019_04.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2019_04.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2019_04.children + sheet_name: Table_2 + period_type: month + period: 2019-04 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2019-04-03T00:00:00' + ordinal: 0 + row_number: 37 + expected_row_header_column: A + expected_row_header: '2019-04-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2019_05.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2019_05.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2019_05.children + sheet_name: Table_2 + period_type: month + period: 2019-05 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2019-05-03T00:00:00' + ordinal: 0 + row_number: 38 + expected_row_header_column: A + expected_row_header: '2019-05-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2019_06.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2019_06.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2019_06.children + sheet_name: Table_2 + period_type: month + period: 2019-06 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2019-06-03T00:00:00' + ordinal: 0 + row_number: 39 + expected_row_header_column: A + expected_row_header: '2019-06-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2019_07.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2019_07.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2019_07.children + sheet_name: Table_2 + period_type: month + period: 2019-07 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2019-07-03T00:00:00' + ordinal: 0 + row_number: 40 + expected_row_header_column: A + expected_row_header: '2019-07-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2019_08.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2019_08.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2019_08.children + sheet_name: Table_2 + period_type: month + period: 2019-08 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2019-08-03T00:00:00' + ordinal: 0 + row_number: 41 + expected_row_header_column: A + expected_row_header: '2019-08-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2019_09.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2019_09.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2019_09.children + sheet_name: Table_2 + period_type: month + period: 2019-09 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2019-09-03T00:00:00' + ordinal: 0 + row_number: 42 + expected_row_header_column: A + expected_row_header: '2019-09-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2019_10.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2019_10.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2019_10.children + sheet_name: Table_2 + period_type: month + period: 2019-10 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2019-10-03T00:00:00' + ordinal: 0 + row_number: 43 + expected_row_header_column: A + expected_row_header: '2019-10-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2019_11.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2019_11.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2019_11.children + sheet_name: Table_2 + period_type: month + period: 2019-11 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2019-11-03T00:00:00' + ordinal: 0 + row_number: 44 + expected_row_header_column: A + expected_row_header: '2019-11-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2019_12.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2019_12.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2019_12.children + sheet_name: Table_2 + period_type: month + period: 2019-12 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2019-12-03T00:00:00' + ordinal: 0 + row_number: 45 + expected_row_header_column: A + expected_row_header: '2019-12-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2020_01.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2020_01.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2020_01.children + sheet_name: Table_2 + period_type: month + period: 2020-01 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2020-01-03T00:00:00' + ordinal: 0 + row_number: 46 + expected_row_header_column: A + expected_row_header: '2020-01-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2020_02.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2020_02.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2020_02.children + sheet_name: Table_2 + period_type: month + period: 2020-02 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2020-02-03T00:00:00' + ordinal: 0 + row_number: 47 + expected_row_header_column: A + expected_row_header: '2020-02-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2020_03.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2020_03.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2020_03.children + sheet_name: Table_2 + period_type: month + period: 2020-03 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2020-03-03T00:00:00' + ordinal: 0 + row_number: 48 + expected_row_header_column: A + expected_row_header: '2020-03-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2020_04.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2020_04.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2020_04.children + sheet_name: Table_2 + period_type: month + period: 2020-04 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2020-04-03T00:00:00' + ordinal: 0 + row_number: 49 + expected_row_header_column: A + expected_row_header: '2020-04-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2020_05.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2020_05.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2020_05.children + sheet_name: Table_2 + period_type: month + period: 2020-05 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2020-05-03T00:00:00' + ordinal: 0 + row_number: 50 + expected_row_header_column: A + expected_row_header: '2020-05-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2020_06.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2020_06.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2020_06.children + sheet_name: Table_2 + period_type: month + period: 2020-06 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2020-06-03T00:00:00' + ordinal: 0 + row_number: 51 + expected_row_header_column: A + expected_row_header: '2020-06-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2020_07.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2020_07.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2020_07.children + sheet_name: Table_2 + period_type: month + period: 2020-07 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2020-07-03T00:00:00' + ordinal: 0 + row_number: 52 + expected_row_header_column: A + expected_row_header: '2020-07-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2020_08.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2020_08.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2020_08.children + sheet_name: Table_2 + period_type: month + period: 2020-08 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2020-08-03T00:00:00' + ordinal: 0 + row_number: 53 + expected_row_header_column: A + expected_row_header: '2020-08-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2020_09.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2020_09.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2020_09.children + sheet_name: Table_2 + period_type: month + period: 2020-09 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2020-09-03T00:00:00' + ordinal: 0 + row_number: 54 + expected_row_header_column: A + expected_row_header: '2020-09-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2020_10.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2020_10.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2020_10.children + sheet_name: Table_2 + period_type: month + period: 2020-10 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2020-10-03T00:00:00' + ordinal: 0 + row_number: 55 + expected_row_header_column: A + expected_row_header: '2020-10-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2020_11.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2020_11.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2020_11.children + sheet_name: Table_2 + period_type: month + period: 2020-11 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2020-11-03T00:00:00' + ordinal: 0 + row_number: 56 + expected_row_header_column: A + expected_row_header: '2020-11-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2020_12.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2020_12.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2020_12.children + sheet_name: Table_2 + period_type: month + period: 2020-12 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2020-12-03T00:00:00' + ordinal: 0 + row_number: 57 + expected_row_header_column: A + expected_row_header: '2020-12-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2021_01.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2021_01.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2021_01.children + sheet_name: Table_2 + period_type: month + period: 2021-01 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2021-01-03T00:00:00' + ordinal: 0 + row_number: 58 + expected_row_header_column: A + expected_row_header: '2021-01-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2021_02.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2021_02.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2021_02.children + sheet_name: Table_2 + period_type: month + period: 2021-02 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2021-02-03T00:00:00' + ordinal: 0 + row_number: 59 + expected_row_header_column: A + expected_row_header: '2021-02-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2021_03.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2021_03.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2021_03.children + sheet_name: Table_2 + period_type: month + period: 2021-03 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2021-03-03T00:00:00' + ordinal: 0 + row_number: 60 + expected_row_header_column: A + expected_row_header: '2021-03-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2021_04.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2021_04.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2021_04.children + sheet_name: Table_2 + period_type: month + period: 2021-04 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2021-04-03T00:00:00' + ordinal: 0 + row_number: 61 + expected_row_header_column: A + expected_row_header: '2021-04-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2021_05.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2021_05.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2021_05.children + sheet_name: Table_2 + period_type: month + period: 2021-05 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2021-05-03T00:00:00' + ordinal: 0 + row_number: 62 + expected_row_header_column: A + expected_row_header: '2021-05-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2021_06.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2021_06.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2021_06.children + sheet_name: Table_2 + period_type: month + period: 2021-06 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2021-06-03T00:00:00' + ordinal: 0 + row_number: 63 + expected_row_header_column: A + expected_row_header: '2021-06-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2021_07.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2021_07.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2021_07.children + sheet_name: Table_2 + period_type: month + period: 2021-07 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2021-07-03T00:00:00' + ordinal: 0 + row_number: 64 + expected_row_header_column: A + expected_row_header: '2021-07-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2021_08.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2021_08.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2021_08.children + sheet_name: Table_2 + period_type: month + period: 2021-08 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2021-08-03T00:00:00' + ordinal: 0 + row_number: 65 + expected_row_header_column: A + expected_row_header: '2021-08-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2021_09.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2021_09.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2021_09.children + sheet_name: Table_2 + period_type: month + period: 2021-09 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2021-09-03T00:00:00' + ordinal: 0 + row_number: 66 + expected_row_header_column: A + expected_row_header: '2021-09-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2021_10.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2021_10.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2021_10.children + sheet_name: Table_2 + period_type: month + period: 2021-10 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2021-10-03T00:00:00' + ordinal: 0 + row_number: 67 + expected_row_header_column: A + expected_row_header: '2021-10-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2021_11.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2021_11.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2021_11.children + sheet_name: Table_2 + period_type: month + period: 2021-11 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2021-11-03T00:00:00' + ordinal: 0 + row_number: 68 + expected_row_header_column: A + expected_row_header: '2021-11-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2021_12.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2021_12.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2021_12.children + sheet_name: Table_2 + period_type: month + period: 2021-12 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2021-12-03T00:00:00' + ordinal: 0 + row_number: 69 + expected_row_header_column: A + expected_row_header: '2021-12-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2022_01.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2022_01.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2022_01.children + sheet_name: Table_2 + period_type: month + period: 2022-01 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2022-01-03T00:00:00' + ordinal: 0 + row_number: 70 + expected_row_header_column: A + expected_row_header: '2022-01-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2022_02.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2022_02.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2022_02.children + sheet_name: Table_2 + period_type: month + period: 2022-02 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2022-02-03T00:00:00' + ordinal: 0 + row_number: 71 + expected_row_header_column: A + expected_row_header: '2022-02-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2022_03.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2022_03.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2022_03.children + sheet_name: Table_2 + period_type: month + period: 2022-03 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2022-03-03T00:00:00' + ordinal: 0 + row_number: 72 + expected_row_header_column: A + expected_row_header: '2022-03-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2022_04.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2022_04.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2022_04.children + sheet_name: Table_2 + period_type: month + period: 2022-04 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2022-04-03T00:00:00' + ordinal: 0 + row_number: 73 + expected_row_header_column: A + expected_row_header: '2022-04-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2022_05.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2022_05.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2022_05.children + sheet_name: Table_2 + period_type: month + period: 2022-05 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2022-05-03T00:00:00' + ordinal: 0 + row_number: 74 + expected_row_header_column: A + expected_row_header: '2022-05-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2022_06.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2022_06.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2022_06.children + sheet_name: Table_2 + period_type: month + period: 2022-06 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2022-06-03T00:00:00' + ordinal: 0 + row_number: 75 + expected_row_header_column: A + expected_row_header: '2022-06-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2022_07.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2022_07.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2022_07.children + sheet_name: Table_2 + period_type: month + period: 2022-07 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2022-07-03T00:00:00' + ordinal: 0 + row_number: 76 + expected_row_header_column: A + expected_row_header: '2022-07-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2022_08.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2022_08.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2022_08.children + sheet_name: Table_2 + period_type: month + period: 2022-08 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2022-08-03T00:00:00' + ordinal: 0 + row_number: 77 + expected_row_header_column: A + expected_row_header: '2022-08-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2022_09.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2022_09.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2022_09.children + sheet_name: Table_2 + period_type: month + period: 2022-09 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2022-09-03T00:00:00' + ordinal: 0 + row_number: 78 + expected_row_header_column: A + expected_row_header: '2022-09-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2022_10.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2022_10.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2022_10.children + sheet_name: Table_2 + period_type: month + period: 2022-10 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2022-10-03T00:00:00' + ordinal: 0 + row_number: 79 + expected_row_header_column: A + expected_row_header: '2022-10-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2022_11.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2022_11.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2022_11.children + sheet_name: Table_2 + period_type: month + period: 2022-11 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2022-11-03T00:00:00' + ordinal: 0 + row_number: 80 + expected_row_header_column: A + expected_row_header: '2022-11-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2022_12.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2022_12.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2022_12.children + sheet_name: Table_2 + period_type: month + period: 2022-12 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2022-12-03T00:00:00' + ordinal: 0 + row_number: 81 + expected_row_header_column: A + expected_row_header: '2022-12-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2023_01.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2023_01.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2023_01.children + sheet_name: Table_2 + period_type: month + period: 2023-01 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2023-01-03T00:00:00' + ordinal: 0 + row_number: 82 + expected_row_header_column: A + expected_row_header: '2023-01-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2023_02.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2023_02.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2023_02.children + sheet_name: Table_2 + period_type: month + period: 2023-02 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2023-02-03T00:00:00' + ordinal: 0 + row_number: 83 + expected_row_header_column: A + expected_row_header: '2023-02-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2023_03.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2023_03.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2023_03.children + sheet_name: Table_2 + period_type: month + period: 2023-03 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2023-03-03T00:00:00' + ordinal: 0 + row_number: 84 + expected_row_header_column: A + expected_row_header: '2023-03-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2023_04.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2023_04.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2023_04.children + sheet_name: Table_2 + period_type: month + period: 2023-04 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2023-04-03T00:00:00' + ordinal: 0 + row_number: 85 + expected_row_header_column: A + expected_row_header: '2023-04-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2023_05.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2023_05.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2023_05.children + sheet_name: Table_2 + period_type: month + period: 2023-05 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2023-05-03T00:00:00' + ordinal: 0 + row_number: 86 + expected_row_header_column: A + expected_row_header: '2023-05-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2023_06.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2023_06.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2023_06.children + sheet_name: Table_2 + period_type: month + period: 2023-06 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2023-06-03T00:00:00' + ordinal: 0 + row_number: 87 + expected_row_header_column: A + expected_row_header: '2023-06-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2023_07.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2023_07.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2023_07.children + sheet_name: Table_2 + period_type: month + period: 2023-07 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2023-07-03T00:00:00' + ordinal: 0 + row_number: 88 + expected_row_header_column: A + expected_row_header: '2023-07-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2023_08.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2023_08.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2023_08.children + sheet_name: Table_2 + period_type: month + period: 2023-08 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2023-08-03T00:00:00' + ordinal: 0 + row_number: 89 + expected_row_header_column: A + expected_row_header: '2023-08-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2023_09.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2023_09.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2023_09.children + sheet_name: Table_2 + period_type: month + period: 2023-09 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2023-09-03T00:00:00' + ordinal: 0 + row_number: 90 + expected_row_header_column: A + expected_row_header: '2023-09-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2023_10.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2023_10.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2023_10.children + sheet_name: Table_2 + period_type: month + period: 2023-10 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2023-10-03T00:00:00' + ordinal: 0 + row_number: 91 + expected_row_header_column: A + expected_row_header: '2023-10-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2023_11.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2023_11.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2023_11.children + sheet_name: Table_2 + period_type: month + period: 2023-11 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2023-11-03T00:00:00' + ordinal: 0 + row_number: 92 + expected_row_header_column: A + expected_row_header: '2023-11-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2023_12.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2023_12.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2023_12.children + sheet_name: Table_2 + period_type: month + period: 2023-12 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2023-12-03T00:00:00' + ordinal: 0 + row_number: 93 + expected_row_header_column: A + expected_row_header: '2023-12-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2024_01.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2024_01.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2024_01.children + sheet_name: Table_2 + period_type: month + period: 2024-01 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2024-01-03T00:00:00' + ordinal: 0 + row_number: 94 + expected_row_header_column: A + expected_row_header: '2024-01-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2024_02.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2024_02.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2024_02.children + sheet_name: Table_2 + period_type: month + period: 2024-02 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2024-02-03T00:00:00' + ordinal: 0 + row_number: 95 + expected_row_header_column: A + expected_row_header: '2024-02-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2024_03.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2024_03.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2024_03.children + sheet_name: Table_2 + period_type: month + period: 2024-03 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2024-03-03T00:00:00' + ordinal: 0 + row_number: 96 + expected_row_header_column: A + expected_row_header: '2024-03-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2024_04.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2024_04.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2024_04.children + sheet_name: Table_2 + period_type: month + period: 2024-04 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2024-04-03T00:00:00' + ordinal: 0 + row_number: 97 + expected_row_header_column: A + expected_row_header: '2024-04-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2024_05.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2024_05.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2024_05.children + sheet_name: Table_2 + period_type: month + period: 2024-05 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2024-05-03T00:00:00' + ordinal: 0 + row_number: 98 + expected_row_header_column: A + expected_row_header: '2024-05-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2024_06.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2024_06.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2024_06.children + sheet_name: Table_2 + period_type: month + period: 2024-06 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2024-06-03T00:00:00' + ordinal: 0 + row_number: 99 + expected_row_header_column: A + expected_row_header: '2024-06-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2024_07.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2024_07.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2024_07.children + sheet_name: Table_2 + period_type: month + period: 2024-07 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2024-07-03T00:00:00' + ordinal: 0 + row_number: 100 + expected_row_header_column: A + expected_row_header: '2024-07-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2024_08.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2024_08.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2024_08.children + sheet_name: Table_2 + period_type: month + period: 2024-08 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2024-08-03T00:00:00' + ordinal: 0 + row_number: 101 + expected_row_header_column: A + expected_row_header: '2024-08-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2024_09.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2024_09.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2024_09.children + sheet_name: Table_2 + period_type: month + period: 2024-09 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2024-09-03T00:00:00' + ordinal: 0 + row_number: 102 + expected_row_header_column: A + expected_row_header: '2024-09-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2024_10.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2024_10.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2024_10.children + sheet_name: Table_2 + period_type: month + period: 2024-10 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2024-10-03T00:00:00' + ordinal: 0 + row_number: 103 + expected_row_header_column: A + expected_row_header: '2024-10-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2024_11.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2024_11.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2024_11.children + sheet_name: Table_2 + period_type: month + period: 2024-11 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2024-11-03T00:00:00' + ordinal: 0 + row_number: 104 + expected_row_header_column: A + expected_row_header: '2024-11-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2024_12.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2024_12.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2024_12.children + sheet_name: Table_2 + period_type: month + period: 2024-12 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2024-12-03T00:00:00' + ordinal: 0 + row_number: 105 + expected_row_header_column: A + expected_row_header: '2024-12-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2025_01.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2025_01.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2025_01.children + sheet_name: Table_2 + period_type: month + period: 2025-01 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2025-01-03T00:00:00' + ordinal: 0 + row_number: 106 + expected_row_header_column: A + expected_row_header: '2025-01-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2025_02.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2025_02.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2025_02.children + sheet_name: Table_2 + period_type: month + period: 2025-02 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2025-02-03T00:00:00' + ordinal: 0 + row_number: 107 + expected_row_header_column: A + expected_row_header: '2025-02-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2025_03.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2025_03.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2025_03.children + sheet_name: Table_2 + period_type: month + period: 2025-03 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2025-03-03T00:00:00' + ordinal: 0 + row_number: 108 + expected_row_header_column: A + expected_row_header: '2025-03-03T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: used_account_in_period + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: used_account_in_period + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2025_04.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2025_04.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2025_04.children + sheet_name: Table_2 + period_type: month + period: 2025-04 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2025-04-01T00:00:00' + ordinal: 0 + row_number: 109 + expected_row_header_column: A + expected_row_header: '2025-04-01T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: payment_and_open_at_reference_date + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: payment_and_open_at_reference_date + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2025_05.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2025_05.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2025_05.children + sheet_name: Table_2 + period_type: month + period: 2025-05 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2025-05-01T00:00:00' + ordinal: 0 + row_number: 110 + expected_row_header_column: A + expected_row_header: '2025-05-01T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: payment_and_open_at_reference_date + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: payment_and_open_at_reference_date + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2025_06.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2025_06.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2025_06.children + sheet_name: Table_2 + period_type: month + period: 2025-06 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2025-06-01T00:00:00' + ordinal: 0 + row_number: 111 + expected_row_header_column: A + expected_row_header: '2025-06-01T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: payment_and_open_at_reference_date + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: payment_and_open_at_reference_date + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2025_07.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2025_07.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2025_07.children + sheet_name: Table_2 + period_type: month + period: 2025-07 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2025-07-01T00:00:00' + ordinal: 0 + row_number: 112 + expected_row_header_column: A + expected_row_header: '2025-07-01T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: payment_and_open_at_reference_date + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: payment_and_open_at_reference_date + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2025_08.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2025_08.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2025_08.children + sheet_name: Table_2 + period_type: month + period: 2025-08 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2025-08-01T00:00:00' + ordinal: 0 + row_number: 113 + expected_row_header_column: A + expected_row_header: '2025-08-01T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: payment_and_open_at_reference_date + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: payment_and_open_at_reference_date + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2025_09.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2025_09.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2025_09.children + sheet_name: Table_2 + period_type: month + period: 2025-09 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2025-09-01T00:00:00' + ordinal: 0 + row_number: 114 + expected_row_header_column: A + expected_row_header: '2025-09-01T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: payment_and_open_at_reference_date + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: payment_and_open_at_reference_date + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2025_10.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2025_10.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2025_10.children + sheet_name: Table_2 + period_type: month + period: 2025-10 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2025-10-01T00:00:00' + ordinal: 0 + row_number: 115 + expected_row_header_column: A + expected_row_header: '2025-10-01T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: payment_and_open_at_reference_date + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: payment_and_open_at_reference_date + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2025_11.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2025_11.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2025_11.children + sheet_name: Table_2 + period_type: month + period: 2025-11 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2025-11-01T00:00:00' + ordinal: 0 + row_number: 116 + expected_row_header_column: A + expected_row_header: '2025-11-01T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: payment_and_open_at_reference_date + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: payment_and_open_at_reference_date + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2025_12.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2025_12.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2025_12.children + sheet_name: Table_2 + period_type: month + period: 2025-12 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2025-12-01T00:00:00' + ordinal: 0 + row_number: 117 + expected_row_header_column: A + expected_row_header: '2025-12-01T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: payment_and_open_at_reference_date + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: payment_and_open_at_reference_date + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2026_01.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2026_01.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2026_01.children + sheet_name: Table_2 + period_type: month + period: 2026-01 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2026-01-01T00:00:00' + ordinal: 0 + row_number: 118 + expected_row_header_column: A + expected_row_header: '2026-01-01T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: payment_and_open_at_reference_date + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: payment_and_open_at_reference_date + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2026_02.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2026_02.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2026_02.children + sheet_name: Table_2 + period_type: month + period: 2026-02 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2026-02-01T00:00:00' + ordinal: 0 + row_number: 119 + expected_row_header_column: A + expected_row_header: '2026-02-01T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: payment_and_open_at_reference_date + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: payment_and_open_at_reference_date + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number +- record_set_id: hmrc.tfc.march_2026.month2026_03.children + provenance_class: administrative + record_set_spec_id: hmrc.tfc.march_2026.month2026_03.children.v1 + source_record_id_prefix: hmrc.tfc.march_2026.month2026_03.children + sheet_name: Table_2 + period_type: month + period: 2026-03 + geography_id: K02000001 + geography_level: country + geography_name: United Kingdom + geography_vintage: current + entity: person + entity_role: child_with_tax_free_childcare_account + domain: tax_free_childcare + groupby_dimension: hmrc.tfc.account_activity + rows: + - value_id: source_row + label: '2026-03-01T00:00:00' + ordinal: 0 + row_number: 120 + expected_row_header_column: A + expected_row_header: '2026-03-01T00:00:00' + table_record_kind: total + filters: + account_status: used + count_basis: monthly_children + definition_regime: payment_and_open_at_reference_date + source_release: 2026 + constraints: + - variable: account_status + operator: == + value: used + label: account status + - variable: count_basis + operator: == + value: monthly_children + label: count basis + - variable: definition_regime + operator: == + value: payment_and_open_at_reference_date + label: definition regime + - variable: source_release + operator: == + value: 2026 + label: source release + measures: + - measure_id: monthly_children_with_used_accounts + label: Monthly children with used Tax-Free Childcare accounts + ordinal: 0 + column: E + expected_column_header_row: 3 + expected_column_header: 'Children with used accounts: Total' + concept: hmrc.tfc_children_with_used_accounts_monthly + source_concept: hmrc.tax_free_childcare.children_with_used_accounts_total + concept_relation: source_label + concept_authority: hmrc + concept_evidence_url: https://www.gov.uk/government/statistics/quality-report-tax-free-childcare/tax-free-childcare-quality-report + concept_evidence_notes: HMRC defines used accounts as the preferred take-up measure. From April 2025, + monthly totals include accounts that both made a payment and remained open; HMRC applied that treatment + to annual figures from FY2024-25 onward. The package keeps the definition regime explicit and does + not derive an activity-duration share. + unit: count + aggregation: sum + expected_cell_type: number diff --git a/tests/test_childcare_source_packages.py b/tests/test_childcare_source_packages.py new file mode 100644 index 0000000..c7ffe3b --- /dev/null +++ b/tests/test_childcare_source_packages.py @@ -0,0 +1,323 @@ +"""Regression tests for the childcare source packages requested in issue 219.""" + +from __future__ import annotations + +from pathlib import Path + +import yaml + +from chronicle.consumer_contract import ( + consumer_fact_rows, + validate_consumer_fact_contract, +) +from chronicle.core import validate_facts +from chronicle.source_package import load_source_package, validate_source_package +from chronicle.sources.cells import validate_source_cells +from chronicle.suite import build_source_suite + + +REPO_ROOT = Path(__file__).parents[1] +DFE_CONCEPT_BY_MEASURE_ID = { + "registered_children_count": "dfe.funded_childcare_registered_children_total", + "registered_children_nursery_count": ( + "dfe.funded_childcare_registered_children_nursery" + ), + "registered_children_reception_count": ( + "dfe.funded_childcare_registered_children_reception" + ), + "eligible_children_count": "dfe.funded_childcare_eligible_children_total", + "eligible_children_nursery_count": ( + "dfe.funded_childcare_eligible_children_nursery" + ), + "eligible_children_universal_credit_count": ( + "dfe.funded_childcare_eligible_children_universal_credit" + ), + "eligible_children_legacy_benefit_count": ( + "dfe.funded_childcare_eligible_children_legacy_benefit" + ), + "registered_eligible_children_percent": ( + "dfe.funded_childcare_eligible_children_registered_percentage_total" + ), + "registered_eligible_children_nursery_percent": ( + "dfe.funded_childcare_eligible_children_registered_percentage_nursery" + ), + "all_children_count": "dfe.funded_childcare_estimated_all_children", + "registered_all_children_percent": ( + "dfe.funded_childcare_all_children_registered_percentage" + ), +} + + +def _fact_by_dimensions(facts, *, concept, period, measure_id=None, **dimensions): + matches = [ + fact + for fact in facts + if fact.measure.concept == concept + and fact.period.value == period + and (measure_id is None or fact.layout.measure_id == measure_id) + and all(fact.filters.get(key) == value for key, value in dimensions.items()) + ] + assert len(matches) == 1 + return matches[0] + + +def test_hmrc_tax_free_childcare_package_preserves_activity_series(): + package = load_source_package("hmrc-tax-free-childcare-march-2026") + report = validate_source_package(package.package_path, year=2026) + cells = package.build_source_cells(2026) + facts = package.build_facts(2026, cells=cells) + + assert report.valid + assert report.counts == { + "record_set_count": 126, + "row_count": 126, + "measure_count": 126, + "source_record_count": 126, + "source_region_count": 126, + } + assert len(cells) == 37_963 + assert validate_source_cells(cells).valid + assert validate_facts(facts).valid + assert validate_consumer_fact_contract(facts).valid + + annual_used = { + fact.period.value: fact.value + for fact in facts + if fact.measure.concept == "hmrc.tfc_children_with_used_accounts_annual_unique" + } + annual_top_up = { + fact.period.value: fact.value + for fact in facts + if fact.measure.concept == "hmrc.tfc_government_top_up" + } + monthly_used = { + fact.period.value: fact.value + for fact in facts + if fact.measure.concept == "hmrc.tfc_children_with_used_accounts_monthly" + } + monthly_used_facts = [ + fact + for fact in facts + if fact.measure.concept == "hmrc.tfc_children_with_used_accounts_monthly" + ] + + assert len(annual_used) == len(annual_top_up) == 9 + assert annual_used[2024] == 1_085_020 + assert annual_top_up[2024] == 632_200_000 + assert len(monthly_used) == 108 + assert monthly_used["2017-04"] == 925 + assert monthly_used["2024-04"] == 664_215 + assert monthly_used["2025-04"] == 699_155 + assert monthly_used["2026-03"] == 744_315 + regimes = { + regime: sum( + fact.filters["definition_regime"] == regime for fact in monthly_used_facts + ) + for regime in { + "used_account_in_period", + "payment_and_open_at_reference_date", + } + } + assert regimes == { + "used_account_in_period": 96, + "payment_and_open_at_reference_date": 12, + } + assert ( + next( + fact for fact in monthly_used_facts if fact.period.value == "2025-03" + ).filters["definition_regime"] + == "used_account_in_period" + ) + assert ( + next( + fact for fact in monthly_used_facts if fact.period.value == "2025-04" + ).filters["definition_regime"] + == "payment_and_open_at_reference_date" + ) + assert all( + any( + constraint.variable == "definition_regime" + and constraint.operator == "==" + and constraint.value == fact.filters["definition_regime"] + for constraint in fact.constraints + ) + for fact in monthly_used_facts + ) + + assert all( + fact.entity.name == "person" + for fact in facts + if fact.measure.concept != "hmrc.tfc_government_top_up" + ) + assert all( + fact.entity.name == "government" + for fact in facts + if fact.measure.concept == "hmrc.tfc_government_top_up" + ) + assert all(fact.geography.id == "K02000001" for fact in facts) + assert all(fact.provenance_class == "administrative" for fact in facts) + assert all(fact.source_cell_keys for fact in facts) + assert not any("share" in fact.measure.concept for fact in facts) + assert len(consumer_fact_rows(facts)) == len(facts) + + +def test_dfe_funded_childcare_package_preserves_atomic_child_headlines(tmp_path): + package = load_source_package("dfe-funded-early-education-childcare-2026") + report = validate_source_package(package.package_path, year=2026) + rows = package.build_source_rows(2026) + cells = package.build_source_cells(2026, source_rows=rows) + facts = package.build_facts(2026, cells=cells, source_rows=rows) + declared_columns = [ + (record_set, row, measure) + for record_set in package.build_source_record_set_specs(2026) + for row in record_set.rows + for measure in record_set.measures + ] + + assert report.valid + assert len(rows) == 224 + assert len(cells) == 6_075 + assert len(facts) == 770 + assert validate_source_cells(cells).valid + assert validate_facts(facts).valid + assert validate_consumer_fact_contract(facts).valid + + working_2025_ages_3_4 = _fact_by_dimensions( + facts, + concept="dfe.funded_childcare_registered_children_total", + period="2025-01", + measure_id="registered_children_count", + entitlement_type="Working parents", + age="3 to 4 years", + ) + working_2025_age_2 = _fact_by_dimensions( + facts, + concept="dfe.funded_childcare_registered_children_total", + period="2025-01", + measure_id="registered_children_count", + entitlement_type="Working parents", + age="2 years", + ) + universal_nursery_2024 = _fact_by_dimensions( + facts, + concept="dfe.funded_childcare_registered_children_nursery", + period="2024-01", + measure_id="registered_children_nursery_count", + entitlement_type="Universal", + age="Total", + ) + working_2024_ages_3_4 = _fact_by_dimensions( + facts, + concept="dfe.funded_childcare_registered_children_total", + period="2024-01", + measure_id="registered_children_count", + entitlement_type="Working parents", + age="3 to 4 years", + ) + early_learning_2024_age_2 = _fact_by_dimensions( + facts, + concept="dfe.funded_childcare_registered_children_total", + period="2024-01", + measure_id="registered_children_count", + entitlement_type="Early learning for 2-year-olds", + age="2 years", + ) + eligible_2024_age_2 = _fact_by_dimensions( + facts, + concept="dfe.funded_childcare_eligible_children_total", + period="2024-01", + measure_id="eligible_children_count", + entitlement_type="Early learning for 2-year-olds", + age="2 years", + ) + registered_share_2024_age_2 = _fact_by_dimensions( + facts, + concept=("dfe.funded_childcare_eligible_children_registered_percentage_total"), + period="2024-01", + measure_id="registered_eligible_children_percent", + entitlement_type="Early learning for 2-year-olds", + age="2 years", + ) + + assert working_2025_ages_3_4.value == 379_029 + assert working_2025_age_2.value == 242_453 + assert universal_nursery_2024.value == 778_327 + assert working_2024_ages_3_4.value == 361_790 + assert early_learning_2024_age_2.value == 115_852 + assert eligible_2024_age_2.value == 154_957 + assert registered_share_2024_age_2.value == 74.763967 + + assert all(fact.period.type == "month" for fact in facts) + assert all(fact.geography.id == "E92000001" for fact in facts) + assert all(fact.entity.name == "person" for fact in facts) + assert all(fact.source_row_keys for fact in facts) + assert all(fact.source.vintage == "release_2026_api_dataset_v1_0" for fact in facts) + assert all( + "third-week-of-January" in fact.measure.concept_evidence_notes for fact in facts + ) + assert all(fact.layout.measure_id in DFE_CONCEPT_BY_MEASURE_ID for fact in facts) + assert all( + fact.measure.concept == DFE_CONCEPT_BY_MEASURE_ID[fact.layout.measure_id] + for fact in facts + ) + assert len(set(DFE_CONCEPT_BY_MEASURE_ID.values())) == len( + DFE_CONCEPT_BY_MEASURE_ID + ) + assert len(declared_columns) == len(facts) + assert all(measure.source_column_dimensions for _, _, measure in declared_columns) + assert all( + all( + { + **record_set.shared_filters, + **row.filters, + **measure.filters, + }.get(dimension) + == value + for dimension, value in measure.source_column_dimensions.items() + ) + for record_set, row, measure in declared_columns + ) + assert working_2025_ages_3_4.filters["registration_basis"] == "registered_children" + assert working_2025_ages_3_4.filters["provision"] == "all" + assert universal_nursery_2024.filters["provision"] == "nursery" + assert eligible_2024_age_2.filters["registration_basis"] == "eligible_children" + consumer_rows = consumer_fact_rows(facts) + assert len({row["semantic_fact_key"] for row in consumer_rows}) == len( + consumer_rows + ) + assert not any(fact.value in {621_482, 416_537} for fact in facts) + assert len(consumer_rows) == len(facts) + + suite = build_source_suite( + "dfe-funded-early-education-childcare-2026", + tmp_path / "dfe-suite", + year=2026, + ) + assert suite.valid + assert not suite.agent_acceptance.errors + + +def test_childcare_manifests_pin_content_addressed_raw_artifacts(): + cases = ( + ( + "hmrc/tax_free_childcare_march_2026", + "c2a8e82a7d1e6c85cbe119ffe0a51e692fac3e5014a37f845484dee710e7a29d", + 321_791, + ), + ( + "dfe/funded_early_education_childcare_2026", + "cefdb06593016446d215433cf31f80649b8ce18f89e454a5ad7931b0ab32d72d", + 33_467, + ), + ) + + for relative_path, sha256, size_bytes in cases: + manifest = yaml.safe_load( + (REPO_ROOT / "db" / "data" / relative_path / "manifest.yaml").read_text() + ) + file_spec = manifest["files"][2026] + assert file_spec["sha256"] == sha256 + assert file_spec["size_bytes"] == size_bytes + assert file_spec["storage"]["r2"]["bucket"] == "ledger-raw" + assert sha256 in file_spec["storage"]["r2"]["key"] + assert file_spec["storage"]["r2"]["uri"].startswith("r2://ledger-raw/raw/") diff --git a/tests/test_chronicle_bundle.py b/tests/test_chronicle_bundle.py index 6a00ef8..3a9e14f 100644 --- a/tests/test_chronicle_bundle.py +++ b/tests/test_chronicle_bundle.py @@ -73,16 +73,16 @@ def test_build_bundle_writes_merged_consumer_contract(tmp_path): "aggregate_duplicate_key_count": 0, "entity_count": 12, "error_count": 0, - "fact_count": 171855, + "fact_count": 172751, "geography_count": 12536, - "period_count": 192, + "period_count": 247, "semantic_duplicate_key_count": 121, "skipped_source_count": 10, - "source_count": 43, - "source_package_count": 151, + "source_count": 44, + "source_package_count": 153, "warning_count": 1, } - assert len(rows) == 171855 + assert len(rows) == 172751 assert {row["provenance_class"] for row in rows} <= { "administrative", "census", @@ -100,7 +100,7 @@ def test_build_bundle_writes_merged_consumer_contract(tmp_path): ) assert rows[0]["aggregate_fact_key"].startswith("ledger.aggregate_fact.v2:") assert rows[0]["semantic_fact_key"].startswith("ledger.semantic_fact.v2:") - assert source_packages["source_package_count"] == 151 + assert source_packages["source_package_count"] == 153 assert source_packages["skipped_source_count"] == 10 assert sorted(item["source"] for item in source_packages["skipped_sources"]) == [ "census-acs-s0101-congressional-district-age-2024", @@ -114,7 +114,7 @@ def test_build_bundle_writes_merged_consumer_contract(tmp_path): "jct-obbba-revenue-estimates-2025", "jct-tax-expenditures-2024", ] - assert coverage["fact_count"] == 171855 + assert coverage["fact_count"] == 172751 assert coverage["counts"]["by_source"] == { "bea": 445, "bfp_economic_outlook": 5, @@ -126,6 +126,7 @@ def test_build_bundle_writes_merged_consumer_contract(tmp_path): "cms_medicaid": 515, "cms_medicare": 1, "cms_nhe": 3, + "dfe": 770, "dft": 81, "dwp": 6547, "eurostat": 207, @@ -133,7 +134,7 @@ def test_build_bundle_writes_merged_consumer_contract(tmp_path): "fpb_economic_outlook": 1000, "hhs_acf_liheap": 2, "hhs_acf_tanf": 110, - "hmrc": 20551, + "hmrc": 20677, "ici": 12, "irs_soi": 40063, "isc": 2, @@ -161,7 +162,19 @@ def test_build_bundle_writes_merged_consumer_contract(tmp_path): "welshgov": 216, } table_counts = coverage["counts"]["by_source_table"] - assert len(table_counts) == 146 + assert len(table_counts) == 148 + assert ( + table_counts["dfe:Funded early education and childcare 2026, Headline figures"] + == 770 + ) + assert ( + table_counts[ + "hmrc:Tax-Free Childcare Statistics March 2026, Table 2: Numbers " + "of Children with Open and Used Tax-Free Childcare Accounts and " + "Government Top-up" + ] + == 126 + ) assert ( table_counts[ "dwp:Universal Credit childcare element statistics to August 2025, Table 1" @@ -481,7 +494,7 @@ def test_build_bundle_writes_merged_consumer_contract(tmp_path): ] == 54 ) - assert coverage["counts"]["by_period"] == { + expected_period_counts = { "academic_year:2013": 6, "academic_year:2014": 6, "academic_year:2015": 6, @@ -675,6 +688,35 @@ def test_build_bundle_writes_merged_consumer_contract(tmp_path): "tax_year:2023": 63054, "tax_year:2024": 40, } + for fiscal_year in range(2017, 2026): + key = f"fiscal_year:{fiscal_year}" + expected_period_counts[key] += 2 + for year, count in { + 2011: 4, + 2012: 18, + 2013: 18, + 2014: 18, + 2015: 32, + 2016: 32, + 2017: 32, + 2018: 64, + 2019: 64, + 2020: 64, + 2021: 64, + 2022: 64, + 2023: 64, + 2024: 64, + 2025: 84, + 2026: 84, + }.items(): + key = f"month:{year}-01" + expected_period_counts[key] = expected_period_counts.get(key, 0) + count + year, month = 2017, 4 + while (year, month) <= (2026, 3): + key = f"month:{year}-{month:02d}" + expected_period_counts[key] = expected_period_counts.get(key, 0) + 1 + year, month = (year + 1, 1) if month == 12 else (year, month + 1) + assert coverage["counts"]["by_period"] == expected_period_counts assert coverage["counts"]["by_geography"]["country:BE"] == 4888 assert coverage["counts"]["by_geography"]["country:DE"] == 36 assert coverage["counts"]["by_geography"]["country:FR"] == 36 @@ -687,7 +729,8 @@ def test_build_bundle_writes_merged_consumer_contract(tmp_path): assert ( coverage["counts"]["by_geography"]["congressional_district:5001700US0601"] == 56 ) - assert coverage["counts"]["by_geography"]["country:K02000001"] == 4297 + assert coverage["counts"]["by_geography"]["country:K02000001"] == 4423 + assert coverage["counts"]["by_geography"]["country:E92000001"] == 1300 assert coverage["counts"]["by_geography"]["country:K03000001"] == 497 assert len(coverage["counts"]["by_geography"]) == 12536 assert coverage["counts"]["by_entity"] == { @@ -695,11 +738,11 @@ def test_build_bundle_writes_merged_consumer_contract(tmp_path): "dwelling": 12733, "family": 107, "firm": 1439, - "government": 1313, + "government": 1322, "household": 40724, "institutional_sector": 133, "pension_plan": 2, - "person": 60466, + "person": 61353, "return": 14600, "social_protection_scheme": 36, "tax_unit": 40069, @@ -716,12 +759,14 @@ def test_build_bundle_writes_merged_consumer_contract(tmp_path): } ] for source in ( + "dfe-funded-early-education-childcare-2026", "dwp-uc-childcare-element-march-2021-august-2025", "dwp-uc-households-carer-entitlement-april-december-2025", "dwp-uc-households-children-april-december-2025", "dwp-uc-households-family-type-april-december-2025", "dwp-uc-households-housing-entitlement-april-december-2025", "dwp-uc-households-lcwra-entitlement-april-december-2025", + "hmrc-tax-free-childcare-march-2026", ): assert (output_dir / "sources" / source / "consumer_facts.jsonl").exists() for source in ( diff --git a/tests/test_chronicle_suite.py b/tests/test_chronicle_suite.py index b4b2af3..3f41813 100644 --- a/tests/test_chronicle_suite.py +++ b/tests/test_chronicle_suite.py @@ -30,6 +30,7 @@ from chronicle.suite import ( SourceRecordSuiteReport, SourceRegionSuiteReport, + _wide_table_filter_evidenced_by_source_column, build_agent_acceptance_report, build_source_cells, build_source_record_specs, @@ -40,6 +41,34 @@ ) +def test_wide_table_evidence_requires_explicit_column_dimension(): + assert not _wide_table_filter_evidenced_by_source_column( + {}, + "provision", + "all", + ) + + +def test_wide_table_evidence_uses_exact_typed_column_dimension_value(): + dimensions = {"provision": "all"} + + assert _wide_table_filter_evidenced_by_source_column( + dimensions, + "provision", + "all", + ) + assert not _wide_table_filter_evidenced_by_source_column( + dimensions, + "provision", + "All", + ) + assert not _wide_table_filter_evidenced_by_source_column( + dimensions, + "registration_basis", + "registered_children", + ) + + def test_build_source_suite_writes_artifacts_and_reports(tmp_path): output_dir = tmp_path / "suite"