From 16a6b7b4f9948dcc8356db15646b93981bc2c77f Mon Sep 17 00:00:00 2001 From: Max Ghenis Date: Thu, 16 Jul 2026 15:36:49 -0400 Subject: [PATCH] Require provenance_class on every record set and emitted fact MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Populace calibrates against these facts, and the standing design rule is: never calibrate against statistics that are functions of the latent quantities populace corrects; admin data first, survey aggregates only for items surveys measure well. The ledger stays epistemically neutral and ingests everything — the measurement-basis classification becomes a required schema field so consumers can gate on it fail-closed. Every record set and every emitted fact now carries provenance_class, closed to exactly administrative, census, survey_aggregate, and model_output, with no default; survey_aggregate requires a non-empty survey_instrument sibling that is forbidden for the other classes. Validation runs at build and at load, the field flows through record-set specs, source records, aggregate facts, fact and consumer-contract JSONL, consumer artifact loading and resolution, and the SQLite artifact, and a completeness test prevents any future record set from omitting it. The field joins the record-set spec hash but is deliberately excluded from stable fact identities, so fact keys are unchanged. All 67 existing packages (1,514 record sets) are backfilled with per- package justifications recorded in the implementation handoff: tax and benefit program records (SOI, SNAP, Medicaid/Medicare, TANF, LIHEAP, ACA, CBO historical actuals, HMRC VAT, state tax collections) are administrative; census-controlled PEP counts are census; ACS tabulations are survey_aggregate/ACS 1-year and the ICI fact-book table is survey_aggregate/ICI Monthly Long-Term Survey; BEA NIPA and Regional accounts, Census population projections, CBO baseline projections, JCT tax-expenditure estimates, and Federal Reserve Z.1 net worth are model_output — assembled statistical estimates, not source records. Implemented by GPT-5.6 Sol with a per-classification justification table; reviewed line by line, with one reclassification at integration (Z.1 administrative → model_output for consistency with the NIPA principle). 95 tests pass including the malformed build/load matrix. Co-Authored-By: Claude Fable 5 --- README.md | 4 +- docs/agent-source-package-harness.md | 22 + docs/schemas/consumer_fact.v1.schema.json | 42 + ledger/consumer_contract.py | 44 + ledger/core.py | 53 ++ ledger/database.py | 8 +- ledger/fixtures/consumer_facts.jsonl | 6 +- ledger/fixtures/facts.jsonl | 160 ++-- ledger/jurisdictions/us/soi.py | 3 + ledger/source_package.py | 72 +- ledger/sources/specs.py | 6 + ledger/store.py | 4 + .../source_package.yaml | 2 + .../source_package.yaml | 18 + .../source_package.yaml | 6 + .../source_package.yaml | 3 + .../source_package.yaml | 8 + .../source_package.yaml | 2 + .../source_package.yaml | 1 + .../source_package.yaml | 6 + .../source_package.yaml | 874 ++++++++++++++++++ .../source_package.yaml | 2 + .../acs_s0101_state_2024/source_package.yaml | 104 +++ .../source_package.yaml | 874 ++++++++++++++++++ .../source_package.yaml | 104 +++ .../source_package.yaml | 1 + .../source_package.yaml | 51 + .../source_package.yaml | 86 ++ .../source_package.yaml | 46 + .../source_package.yaml | 1 + .../oep_state_level/source_package.yaml | 1 + .../oep_state_level_2022/source_package.yaml | 2 + .../oep_state_level_2025/source_package.yaml | 1 + .../source_package.yaml | 1 + .../source_package.yaml | 1 + .../source_package.yaml | 1 + .../source_package.yaml | 1 + packages/cms_nhe/table_24/source_package.yaml | 12 + .../source_package.yaml | 5 + .../tanf_caseload_2024/source_package.yaml | 3 + .../tanf_financial_2024/source_package.yaml | 52 ++ .../source_package.yaml | 1 + .../source_package.yaml | 1 + .../source_package.yaml | 2 + .../source_package.yaml | 2 + .../fact_book_table_30/source_package.yaml | 12 + .../source_package.yaml | 1 + .../source_package.yaml | 4 + .../historic_table_2/source_package.yaml | 1 + .../source_package.yaml | 51 + .../source_package.yaml | 51 + .../source_package.yaml | 51 + .../source_package.yaml | 1 + .../source_package.yaml | 1 + .../irs_soi/state_2022/source_package.yaml | 4 + .../irs_soi/table_1_1/source_package.yaml | 1 + .../irs_soi/table_1_2/source_package.yaml | 1 + .../irs_soi/table_1_4/source_package.yaml | 1 + .../irs_soi/table_2_1/source_package.yaml | 1 + .../irs_soi/table_2_5/source_package.yaml | 1 + .../source_package.yaml | 4 + .../source_package.yaml | 4 + .../irs_soi/table_4_3/source_package.yaml | 1 + .../w2_statistics_2020/source_package.yaml | 3 + .../tax_expenditures_2024/source_package.yaml | 1 + .../source_package.yaml | 4 + .../source_package.yaml | 1 + .../source_package.yaml | 1 + .../unemployment_2024/source_package.yaml | 1 + .../source_package.yaml | 2 + .../source_package.yaml | 2 + .../contributions_2024/source_package.yaml | 1 + .../source_package.yaml | 2 + .../source_package.yaml | 1 + .../spf_finances/pit_2023/source_package.yaml | 1 + .../source_package.yaml | 1 + .../ssi_table_7b1_2024/source_package.yaml | 2 + .../source_package.yaml | 1 + .../source_package.yaml | 1 + .../fy69_to_current/source_package.yaml | 24 + policyengine_ledger/__init__.py | 2 + policyengine_ledger/consumer.py | 49 +- .../schemas/consumer_fact.v1.schema.json | 42 + tests/test_ledger_bundle.py | 15 + tests/test_ledger_concepts.py | 1 + tests/test_ledger_consumer.py | 86 ++ tests/test_ledger_consumer_contract.py | 74 ++ tests/test_ledger_core.py | 1 + tests/test_ledger_database.py | 2 + tests/test_ledger_facts_only.py | 61 ++ tests/test_ledger_source_package.py | 131 ++- tests/test_ledger_suite.py | 4 + tests/test_policyengine_ledger_imports.py | 1 + 93 files changed, 3315 insertions(+), 93 deletions(-) diff --git a/README.md b/README.md index af6799d..00407d5 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,9 @@ This repository provides: geography, period, source table, and lineage. Publisher projections (CBO baselines, BFP outlooks, SSA trustees tables, TPC/JCT scores) are facts typed `assertion: source_projection`; measured outcomes are the default - `assertion: observation`. + `assertion: observation`. Every fact also carries a required, closed + `provenance_class` measurement basis; survey aggregates additionally name + their `survey_instrument`. - **Normalization**: Low-assumption representation changes such as unit/scale conversion and source-published total/share arithmetic. - **Target profiles**: Source-backed target contracts and model-measurement diff --git a/docs/agent-source-package-harness.md b/docs/agent-source-package-harness.md index 6a1d699..1eebebe 100644 --- a/docs/agent-source-package-harness.md +++ b/docs/agent-source-package-harness.md @@ -481,6 +481,28 @@ units, aggregation methods, filters, and first-class constraints. The harness compiles those rows and measures into atomic source records, validates selectors against parsed cells, then emits target facts and the relational Ledger DB. +Every record set must declare a `provenance_class`; there is no default. The +closed vocabulary describes the publisher's measurement basis: + +- `administrative` for program, tax, collection, caseload, or payment records; +- `census` for full-enumeration or census-controlled counts; +- `survey_aggregate` for published sample-survey tabulations; and +- `model_output` for model-based estimates, outlooks, baselines, and other + evaluation/oracle outputs. + +A `survey_aggregate` record set must also name its source survey in a non-empty +`survey_instrument` string. `survey_instrument` is forbidden for every other +class. Missing, unknown, wrongly typed, and misplaced values fail package load +and build validation. + +```yaml +record_sets: + - record_set_id: census_acs.acs1_{year}.s0101.national_age + provenance_class: survey_aggregate + survey_instrument: ACS 1-year + record_set_spec_id: census_acs.s0101.national_age.v1 +``` + Agents may add new package directories and YAML specs. They should not modify `ledger.core`, `ledger.database`, or `ledger.suite` unless the package cannot be expressed in the current contract and the failure is documented in the build diff --git a/docs/schemas/consumer_fact.v1.schema.json b/docs/schemas/consumer_fact.v1.schema.json index 37a29e1..6a699c0 100644 --- a/docs/schemas/consumer_fact.v1.schema.json +++ b/docs/schemas/consumer_fact.v1.schema.json @@ -17,6 +17,7 @@ "value", "value_type", "assertion", + "provenance_class", "period", "geography", "entity", @@ -27,6 +28,32 @@ "source", "lineage" ], + "allOf": [ + { + "if": { + "properties": { + "provenance_class": { + "const": "survey_aggregate" + } + }, + "required": [ + "provenance_class" + ] + }, + "then": { + "required": [ + "survey_instrument" + ] + }, + "else": { + "not": { + "required": [ + "survey_instrument" + ] + } + } + } + ], "properties": { "schema_version": { "const": "ledger.consumer_fact.v1" @@ -339,6 +366,21 @@ ], "description": "Who asserted the value: a publisher-measured outcome (observation) or the publisher's own forward-looking estimate (source_projection). PolicyEngine-computed values are never consumer facts." }, + "provenance_class": { + "type": "string", + "enum": [ + "administrative", + "census", + "survey_aggregate", + "model_output" + ], + "description": "Publisher measurement basis. Consumers can gate calibration inputs on this required, closed classification." + }, + "survey_instrument": { + "type": "string", + "pattern": ".*\\S.*", + "description": "Survey name required exactly when provenance_class is survey_aggregate." + }, "period_coverage": { "type": "object", "additionalProperties": false, diff --git a/ledger/consumer_contract.py b/ledger/consumer_contract.py index 87f761b..62f52c7 100644 --- a/ledger/consumer_contract.py +++ b/ledger/consumer_contract.py @@ -16,6 +16,7 @@ from typing import Any from ledger.core import ( + ALLOWED_PROVENANCE_CLASSES, DEFAULT_ASSERTION, AggregateConstraint, AggregateFact, @@ -332,6 +333,19 @@ def validate_consumer_fact_contract( ) ) + provenance_issue = _fact_provenance_class_issue(fact) + if provenance_issue is not None: + code, message, field = provenance_issue + errors.append( + ConsumerFactContractIssue( + code=code, + message=message, + fact_index=index, + fact_key=fact_key, + field=field, + ) + ) + if not fact.source_record_id: errors.append( ConsumerFactContractIssue( @@ -419,6 +433,33 @@ def _derived_source_provenance_issue(fact: AggregateFact) -> str | None: return None +def _fact_provenance_class_issue( + fact: AggregateFact, +) -> tuple[str, str, str] | None: + if type(fact.provenance_class) is not str or ( + fact.provenance_class not in ALLOWED_PROVENANCE_CLASSES + ): + return ( + "malformed_provenance_class", + f"Unsupported provenance class: {fact.provenance_class!r}.", + "provenance_class", + ) + if fact.provenance_class == "survey_aggregate": + if type(fact.survey_instrument) is not str or not fact.survey_instrument.strip(): + return ( + "missing_survey_instrument", + "Survey aggregates need a non-empty survey instrument.", + "survey_instrument", + ) + elif fact.survey_instrument is not None: + return ( + "misplaced_survey_instrument", + "survey_instrument is only valid for survey_aggregate facts.", + "survey_instrument", + ) + return None + + def _filter_derived_constraints( fact: AggregateFact, ) -> tuple[AggregateConstraint, ...]: @@ -532,6 +573,8 @@ def _consumer_fact_row(fact: AggregateFact) -> dict[str, Any]: "value": _json_value(fact.value), "value_type": _value_type(fact.value), "assertion": fact.assertion, + "provenance_class": fact.provenance_class, + "survey_instrument": fact.survey_instrument, "period": asdict(fact.period), "geography": _geography_payload(fact), "entity": asdict(fact.entity), @@ -689,6 +732,7 @@ def _json_value(value: Any) -> Any: "value", "value_type", "assertion", + "provenance_class", "period", "geography", "entity", diff --git a/ledger/core.py b/ledger/core.py index 6561186..8f0c45f 100644 --- a/ledger/core.py +++ b/ledger/core.py @@ -64,6 +64,12 @@ } ALLOWED_ASSERTIONS = {"observation", "source_projection"} DEFAULT_ASSERTION = "observation" +ALLOWED_PROVENANCE_CLASSES = { + "administrative", + "census", + "model_output", + "survey_aggregate", +} ALLOWED_PERIOD_BASES = { "calendar", "tax", @@ -217,6 +223,10 @@ class AggregateFact: forward-looking estimate (CBO baselines, BFP outlooks, SSA trustees tables, TPC/JCT scores). PolicyEngine-computed values are never facts; aged, uprated, or reconciled levels belong in downstream builds. + + ``provenance_class`` records the publisher's measurement basis and has no + default. Survey aggregates additionally require ``survey_instrument``; + that field is forbidden for administrative, census, and model outputs. """ value: int | float | str | Decimal @@ -226,6 +236,8 @@ class AggregateFact: measure: Measure aggregation: Aggregation source: SourceProvenance + provenance_class: str + survey_instrument: str | None = None filters: dict[str, Scalar] = field(default_factory=dict) domain: str = "all" label: str | None = None @@ -466,6 +478,8 @@ def validate_fact(fact: AggregateFact) -> tuple[ValidationIssue, ...]: ) ) + _validate_provenance_class(errors, fact) + _validate_value(errors, fact.value) _validate_filters(errors, fact.filters) _validate_constraints(errors, fact.constraints) @@ -539,6 +553,9 @@ 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 + ), "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)) @@ -594,6 +611,42 @@ def _validate_value(errors: list[ValidationIssue], value: Any) -> None: errors.append(_issue("missing_value", "Fact value is required", "value")) +def _validate_provenance_class( + errors: list[ValidationIssue], + fact: AggregateFact, +) -> None: + provenance_class = fact.provenance_class + if type(provenance_class) is not str or ( + provenance_class not in ALLOWED_PROVENANCE_CLASSES + ): + errors.append( + _issue( + "malformed_provenance_class", + f"Unsupported provenance class: {provenance_class!r}", + "provenance_class", + ) + ) + return + + if provenance_class == "survey_aggregate": + if type(fact.survey_instrument) is not str or not fact.survey_instrument.strip(): + errors.append( + _issue( + "missing_survey_instrument", + "Survey-aggregate facts need a non-empty survey instrument.", + "survey_instrument", + ) + ) + elif fact.survey_instrument is not None: + errors.append( + _issue( + "misplaced_survey_instrument", + "survey_instrument is only valid for survey_aggregate facts.", + "survey_instrument", + ) + ) + + def _validate_filters( errors: list[ValidationIssue], filters: dict[str, Scalar], diff --git a/ledger/database.py b/ledger/database.py index 1dcad4f..644c6e2 100644 --- a/ledger/database.py +++ b/ledger/database.py @@ -291,6 +291,8 @@ def _create_schema(connection: sqlite3.Connection) -> None: aggregation_method TEXT NOT NULL, aggregation_denominator TEXT, domain TEXT NOT NULL, + provenance_class TEXT NOT NULL, + survey_instrument TEXT, assertion TEXT NOT NULL DEFAULT 'observation', period_coverage_json TEXT, filters_json TEXT NOT NULL, @@ -834,6 +836,8 @@ def _insert_aggregate_fact( aggregation_method, aggregation_denominator, domain, + provenance_class, + survey_instrument, assertion, period_coverage_json, filters_json, @@ -847,7 +851,7 @@ def _insert_aggregate_fact( source_extraction_method, source_method_notes ) - VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) + VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) """, ( fact_key, @@ -890,6 +894,8 @@ def _insert_aggregate_fact( fact.aggregation.method, fact.aggregation.denominator, fact.domain, + fact.provenance_class, + fact.survey_instrument, fact.assertion, ( _json_dumps( diff --git a/ledger/fixtures/consumer_facts.jsonl b/ledger/fixtures/consumer_facts.jsonl index 18fa9b1..460ac60 100644 --- a/ledger/fixtures/consumer_facts.jsonl +++ b/ledger/fixtures/consumer_facts.jsonl @@ -1,3 +1,3 @@ -{"aggregate_fact_key": "ledger.aggregate_fact.v2:13153fb8dfd73fa12d5715e9", "aggregation": {"method": "sum"}, "assertion": "observation", "dimension_set_key": "ledger.dimension_set.v2:a55266d8b1d53a8a7e49927d", "dimensions": {"filing_status": "all", "income_range": "all"}, "entity": {"name": "tax_unit", "role": "filing_unit"}, "geography": {"id": "0100000US", "level": "country", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (filing status=all, income range=all) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 0, "groupby_value_id": "all", "groupby_value_label": "All returns", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "all", "table_record_kind": "total"}, "legacy_fact_key": "ledger.fact.v1:079f0697e3b090abf422781b", "lineage": {"source_cell_keys": ["ledger.source_cell.v1:82f39b2a5aeab53c1b717928"], "source_record_id": "irs_soi.ty2023.table_1_1.all.return_count", "source_row_keys": []}, "observed_measure": {"source_concept": "irs_soi.individual_income_tax_returns", "source_measure_id": "return_count", "source_name": "irs_soi", "source_table": "Publication 1304 Table 1.1", "unit": "count"}, "observed_measure_key": "ledger.observed_measure.v2:bc96277bae6ef31da4a5794c", "period": {"type": "tax_year", "value": 2023}, "schema_version": "ledger.consumer_fact.v1", "semantic_fact_key": "ledger.semantic_fact.v2:1ae4c4f93f554ec7ca14d2ad", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_release_key": "ledger.source_release.v2:e418de50f65dc3f88fbcdd6c", "source_series_key": "ledger.source_series.v2:ac7ef40c4f9adbd84a82f24c", "universe_constraint_set_key": "ledger.universe_constraint_set.v2:18df86d027cde55a3f217b77", "universe_constraints": {"domain": "all_individual_income_tax_returns"}, "value": 160602107, "value_type": "integer"} -{"aggregate_fact_key": "ledger.aggregate_fact.v2:36ce90001adb50e8e9758e4f", "aggregation": {"method": "sum"}, "assertion": "observation", "concept_alignment": {"authority": "ledger-us", "canonical_concept": "us:statutes/26/62#adjusted_gross_income", "concept_alignment_key": "ledger.concept_alignment.v2:2e0ac323f1b261710e4397a1", "evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "legal_vintage": "tax_year_2023", "relation": "exact", "source_concept": "irs_soi.adjusted_gross_income"}, "dimension_set_key": "ledger.dimension_set.v2:a55266d8b1d53a8a7e49927d", "dimensions": {"filing_status": "all", "income_range": "all"}, "entity": {"name": "tax_unit", "role": "filing_unit"}, "geography": {"id": "0100000US", "level": "country", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (filing status=all, income range=all) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 0, "groupby_value_id": "all", "groupby_value_label": "All returns", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "all", "table_record_kind": "total"}, "legacy_fact_key": "ledger.fact.v1:7f8e9d3c64fec2670b571c3b", "lineage": {"source_cell_keys": ["ledger.source_cell.v1:c3d349e26856fb6224303675"], "source_record_id": "irs_soi.ty2023.table_1_1.all.adjusted_gross_income", "source_row_keys": []}, "observed_measure": {"source_concept": "irs_soi.adjusted_gross_income", "source_measure_id": "adjusted_gross_income", "source_name": "irs_soi", "source_table": "Publication 1304 Table 1.1", "unit": "usd"}, "observed_measure_key": "ledger.observed_measure.v2:ac9c3cef252ef7ead0066cb1", "period": {"type": "tax_year", "value": 2023}, "schema_version": "ledger.consumer_fact.v1", "semantic_fact_key": "ledger.semantic_fact.v2:b83082b8e69c1ddc6fdebed2", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_release_key": "ledger.source_release.v2:e418de50f65dc3f88fbcdd6c", "source_series_key": "ledger.source_series.v2:ac7ef40c4f9adbd84a82f24c", "universe_constraint_set_key": "ledger.universe_constraint_set.v2:18df86d027cde55a3f217b77", "universe_constraints": {"domain": "all_individual_income_tax_returns"}, "value": 15286017359000, "value_type": "integer"} -{"aggregate_fact_key": "ledger.aggregate_fact.v2:0fa0e8c17cfe0ebd844c4f95", "aggregation": {"method": "sum"}, "assertion": "observation", "dimension_set_key": "ledger.dimension_set.v2:a55266d8b1d53a8a7e49927d", "dimensions": {"filing_status": "all", "income_range": "all"}, "entity": {"name": "tax_unit", "role": "filing_unit"}, "geography": {"id": "0100000US", "level": "country", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (filing status=all, income range=all) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 0, "groupby_value_id": "all", "groupby_value_label": "All returns", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "all", "table_record_kind": "total"}, "legacy_fact_key": "ledger.fact.v1:ec48b42ac43674a2a2206b8b", "lineage": {"source_cell_keys": ["ledger.source_cell.v1:f38c48e6e2f23204eb997143"], "source_record_id": "irs_soi.ty2023.table_1_1.all.total_income_tax", "source_row_keys": []}, "observed_measure": {"source_concept": "irs_soi.total_income_tax", "source_measure_id": "total_income_tax", "source_name": "irs_soi", "source_table": "Publication 1304 Table 1.1", "unit": "usd"}, "observed_measure_key": "ledger.observed_measure.v2:c11ff13c2dfe8af0795a1194", "period": {"type": "tax_year", "value": 2023}, "schema_version": "ledger.consumer_fact.v1", "semantic_fact_key": "ledger.semantic_fact.v2:f8b2801687c0ba560054ed36", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_release_key": "ledger.source_release.v2:e418de50f65dc3f88fbcdd6c", "source_series_key": "ledger.source_series.v2:ac7ef40c4f9adbd84a82f24c", "universe_constraint_set_key": "ledger.universe_constraint_set.v2:18df86d027cde55a3f217b77", "universe_constraints": {"domain": "all_individual_income_tax_returns"}, "value": 2147909818000, "value_type": "integer"} +{"aggregate_fact_key": "ledger.aggregate_fact.v2:13153fb8dfd73fa12d5715e9", "aggregation": {"method": "sum"}, "assertion": "observation", "dimension_set_key": "ledger.dimension_set.v2:a55266d8b1d53a8a7e49927d", "dimensions": {"filing_status": "all", "income_range": "all"}, "entity": {"name": "tax_unit", "role": "filing_unit"}, "geography": {"id": "0100000US", "level": "country", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (filing status=all, income range=all) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 0, "groupby_value_id": "all", "groupby_value_label": "All returns", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "all", "table_record_kind": "total"}, "legacy_fact_key": "ledger.fact.v1:079f0697e3b090abf422781b", "lineage": {"source_cell_keys": ["ledger.source_cell.v1:82f39b2a5aeab53c1b717928"], "source_record_id": "irs_soi.ty2023.table_1_1.all.return_count", "source_row_keys": []}, "observed_measure": {"source_concept": "irs_soi.individual_income_tax_returns", "source_measure_id": "return_count", "source_name": "irs_soi", "source_table": "Publication 1304 Table 1.1", "unit": "count"}, "observed_measure_key": "ledger.observed_measure.v2:bc96277bae6ef31da4a5794c", "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "schema_version": "ledger.consumer_fact.v1", "semantic_fact_key": "ledger.semantic_fact.v2:1ae4c4f93f554ec7ca14d2ad", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_release_key": "ledger.source_release.v2:e418de50f65dc3f88fbcdd6c", "source_series_key": "ledger.source_series.v2:ac7ef40c4f9adbd84a82f24c", "universe_constraint_set_key": "ledger.universe_constraint_set.v2:18df86d027cde55a3f217b77", "universe_constraints": {"domain": "all_individual_income_tax_returns"}, "value": 160602107, "value_type": "integer"} +{"aggregate_fact_key": "ledger.aggregate_fact.v2:36ce90001adb50e8e9758e4f", "aggregation": {"method": "sum"}, "assertion": "observation", "concept_alignment": {"authority": "ledger-us", "canonical_concept": "us:statutes/26/62#adjusted_gross_income", "concept_alignment_key": "ledger.concept_alignment.v2:2e0ac323f1b261710e4397a1", "evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "legal_vintage": "tax_year_2023", "relation": "exact", "source_concept": "irs_soi.adjusted_gross_income"}, "dimension_set_key": "ledger.dimension_set.v2:a55266d8b1d53a8a7e49927d", "dimensions": {"filing_status": "all", "income_range": "all"}, "entity": {"name": "tax_unit", "role": "filing_unit"}, "geography": {"id": "0100000US", "level": "country", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (filing status=all, income range=all) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 0, "groupby_value_id": "all", "groupby_value_label": "All returns", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "all", "table_record_kind": "total"}, "legacy_fact_key": "ledger.fact.v1:7f8e9d3c64fec2670b571c3b", "lineage": {"source_cell_keys": ["ledger.source_cell.v1:c3d349e26856fb6224303675"], "source_record_id": "irs_soi.ty2023.table_1_1.all.adjusted_gross_income", "source_row_keys": []}, "observed_measure": {"source_concept": "irs_soi.adjusted_gross_income", "source_measure_id": "adjusted_gross_income", "source_name": "irs_soi", "source_table": "Publication 1304 Table 1.1", "unit": "usd"}, "observed_measure_key": "ledger.observed_measure.v2:ac9c3cef252ef7ead0066cb1", "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "schema_version": "ledger.consumer_fact.v1", "semantic_fact_key": "ledger.semantic_fact.v2:b83082b8e69c1ddc6fdebed2", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_release_key": "ledger.source_release.v2:e418de50f65dc3f88fbcdd6c", "source_series_key": "ledger.source_series.v2:ac7ef40c4f9adbd84a82f24c", "universe_constraint_set_key": "ledger.universe_constraint_set.v2:18df86d027cde55a3f217b77", "universe_constraints": {"domain": "all_individual_income_tax_returns"}, "value": 15286017359000, "value_type": "integer"} +{"aggregate_fact_key": "ledger.aggregate_fact.v2:0fa0e8c17cfe0ebd844c4f95", "aggregation": {"method": "sum"}, "assertion": "observation", "dimension_set_key": "ledger.dimension_set.v2:a55266d8b1d53a8a7e49927d", "dimensions": {"filing_status": "all", "income_range": "all"}, "entity": {"name": "tax_unit", "role": "filing_unit"}, "geography": {"id": "0100000US", "level": "country", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (filing status=all, income range=all) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 0, "groupby_value_id": "all", "groupby_value_label": "All returns", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "all", "table_record_kind": "total"}, "legacy_fact_key": "ledger.fact.v1:ec48b42ac43674a2a2206b8b", "lineage": {"source_cell_keys": ["ledger.source_cell.v1:f38c48e6e2f23204eb997143"], "source_record_id": "irs_soi.ty2023.table_1_1.all.total_income_tax", "source_row_keys": []}, "observed_measure": {"source_concept": "irs_soi.total_income_tax", "source_measure_id": "total_income_tax", "source_name": "irs_soi", "source_table": "Publication 1304 Table 1.1", "unit": "usd"}, "observed_measure_key": "ledger.observed_measure.v2:c11ff13c2dfe8af0795a1194", "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "schema_version": "ledger.consumer_fact.v1", "semantic_fact_key": "ledger.semantic_fact.v2:f8b2801687c0ba560054ed36", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_release_key": "ledger.source_release.v2:e418de50f65dc3f88fbcdd6c", "source_series_key": "ledger.source_series.v2:ac7ef40c4f9adbd84a82f24c", "universe_constraint_set_key": "ledger.universe_constraint_set.v2:18df86d027cde55a3f217b77", "universe_constraints": {"domain": "all_individual_income_tax_returns"}, "value": 2147909818000, "value_type": "integer"} diff --git a/ledger/fixtures/facts.jsonl b/ledger/fixtures/facts.jsonl index e5cdab3..0eaf51f 100644 --- a/ledger/fixtures/facts.jsonl +++ b/ledger/fixtures/facts.jsonl @@ -1,80 +1,80 @@ -{"aggregation": {"denominator": null, "method": "sum"}, "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"filing_status": "all", "income_range": "all"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (filing status=all, income range=all) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 0, "groupby_value_id": "all", "groupby_value_label": "All returns", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "all", "table_record_kind": "total"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:82f39b2a5aeab53c1b717928"], "source_record_id": "irs_soi.ty2023.table_1_1.all.return_count", "value": 160602107} -{"aggregation": {"denominator": null, "method": "sum"}, "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"filing_status": "all", "income_range": "all"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (filing status=all, income range=all) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 0, "groupby_value_id": "all", "groupby_value_label": "All returns", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "all", "table_record_kind": "total"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:c3d349e26856fb6224303675"], "source_record_id": "irs_soi.ty2023.table_1_1.all.adjusted_gross_income", "value": 15286017359000} -{"aggregation": {"denominator": null, "method": "sum"}, "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"filing_status": "all", "income_range": "all"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (filing status=all, income range=all) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 0, "groupby_value_id": "all", "groupby_value_label": "All returns", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "all", "table_record_kind": "total"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:f38c48e6e2f23204eb997143"], "source_record_id": "irs_soi.ty2023.table_1_1.all.total_income_tax", "value": 2147909818000} -{"aggregation": {"denominator": null, "method": "sum"}, "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"filing_status": "all", "income_range": "all"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (filing status=all, income range=all) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 0, "groupby_value_id": "all", "groupby_value_label": "All returns", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "all", "table_record_kind": "total"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:a38dfdc6310412d2e73b8127"], "source_record_id": "irs_soi.ty2023.table_1_1.all.income_tax_after_credits_returns", "value": 111545061} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 1, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_upper_usd": 1, "filing_status": "all", "income_range": "under_1"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi upper usd=1, filing status=all, income range=under 1) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 1, "groupby_value_id": "under_1", "groupby_value_label": "No adjusted gross income", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "under_1", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:ceb83e9230a93d55f2053863"], "source_record_id": "irs_soi.ty2023.table_1_1.under_1.return_count", "value": 2180146} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 1, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_upper_usd": 1, "filing_status": "all", "income_range": "under_1"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi upper usd=1, filing status=all, income range=under 1) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 1, "groupby_value_id": "under_1", "groupby_value_label": "No adjusted gross income", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "under_1", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:466950fa78f909ef709f6fb1"], "source_record_id": "irs_soi.ty2023.table_1_1.under_1.adjusted_gross_income", "value": -144194936000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 1, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_upper_usd": 1, "filing_status": "all", "income_range": "under_1"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi upper usd=1, filing status=all, income range=under 1) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 1, "groupby_value_id": "under_1", "groupby_value_label": "No adjusted gross income", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "under_1", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:baf9717375de9c436d3145fa"], "source_record_id": "irs_soi.ty2023.table_1_1.under_1.total_income_tax", "value": 114270000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 1, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_upper_usd": 1, "filing_status": "all", "income_range": "under_1"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi upper usd=1, filing status=all, income range=under 1) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 1, "groupby_value_id": "under_1", "groupby_value_label": "No adjusted gross income", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "under_1", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:2a5558c2590d587f45069ff3"], "source_record_id": "irs_soi.ty2023.table_1_1.under_1.income_tax_after_credits_returns", "value": 2094} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 1, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 5000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 1, "agi_upper_usd": 5000, "filing_status": "all", "income_range": "1_to_5k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=1, agi upper usd=5000, filing status=all, income range=1 to 5k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 2, "groupby_value_id": "1_to_5k", "groupby_value_label": "$1 under $5,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "1_to_5k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:9ed3dffe7ec9f552b3e87f32"], "source_record_id": "irs_soi.ty2023.table_1_1.1_to_5k.return_count", "value": 7357751} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 1, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 5000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 1, "agi_upper_usd": 5000, "filing_status": "all", "income_range": "1_to_5k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=1, agi upper usd=5000, filing status=all, income range=1 to 5k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 2, "groupby_value_id": "1_to_5k", "groupby_value_label": "$1 under $5,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "1_to_5k", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:edcb37ab86bd6a3677097395"], "source_record_id": "irs_soi.ty2023.table_1_1.1_to_5k.adjusted_gross_income", "value": 17450063000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 1, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 5000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 1, "agi_upper_usd": 5000, "filing_status": "all", "income_range": "1_to_5k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=1, agi upper usd=5000, filing status=all, income range=1 to 5k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 2, "groupby_value_id": "1_to_5k", "groupby_value_label": "$1 under $5,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "1_to_5k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:74c39ed21f3bec1e7e1dc310"], "source_record_id": "irs_soi.ty2023.table_1_1.1_to_5k.total_income_tax", "value": 15081000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 1, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 5000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 1, "agi_upper_usd": 5000, "filing_status": "all", "income_range": "1_to_5k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=1, agi upper usd=5000, filing status=all, income range=1 to 5k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 2, "groupby_value_id": "1_to_5k", "groupby_value_label": "$1 under $5,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "1_to_5k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:d23f00f39572b45032df6c86"], "source_record_id": "irs_soi.ty2023.table_1_1.1_to_5k.income_tax_after_credits_returns", "value": 120341} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 5000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 10000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 5000, "agi_upper_usd": 10000, "filing_status": "all", "income_range": "5k_to_10k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=5000, agi upper usd=10000, filing status=all, income range=5k to 10k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 3, "groupby_value_id": "5k_to_10k", "groupby_value_label": "$5,000 under $10,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "5k_to_10k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:bc69eccdbbf8bb2f3e287a47"], "source_record_id": "irs_soi.ty2023.table_1_1.5k_to_10k.return_count", "value": 8077917} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 5000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 10000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 5000, "agi_upper_usd": 10000, "filing_status": "all", "income_range": "5k_to_10k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=5000, agi upper usd=10000, filing status=all, income range=5k to 10k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 3, "groupby_value_id": "5k_to_10k", "groupby_value_label": "$5,000 under $10,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "5k_to_10k", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:5d8a501f1302fd90621b23d8"], "source_record_id": "irs_soi.ty2023.table_1_1.5k_to_10k.adjusted_gross_income", "value": 60949546000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 5000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 10000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 5000, "agi_upper_usd": 10000, "filing_status": "all", "income_range": "5k_to_10k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=5000, agi upper usd=10000, filing status=all, income range=5k to 10k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 3, "groupby_value_id": "5k_to_10k", "groupby_value_label": "$5,000 under $10,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "5k_to_10k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:441a5cc260757ac4a2de9e9f"], "source_record_id": "irs_soi.ty2023.table_1_1.5k_to_10k.total_income_tax", "value": 42411000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 5000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 10000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 5000, "agi_upper_usd": 10000, "filing_status": "all", "income_range": "5k_to_10k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=5000, agi upper usd=10000, filing status=all, income range=5k to 10k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 3, "groupby_value_id": "5k_to_10k", "groupby_value_label": "$5,000 under $10,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "5k_to_10k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:eb9b98de2d84d3611d2c1893"], "source_record_id": "irs_soi.ty2023.table_1_1.5k_to_10k.income_tax_after_credits_returns", "value": 141213} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 10000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 15000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 10000, "agi_upper_usd": 15000, "filing_status": "all", "income_range": "10k_to_15k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=10000, agi upper usd=15000, filing status=all, income range=10k to 15k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 4, "groupby_value_id": "10k_to_15k", "groupby_value_label": "$10,000 under $15,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "10k_to_15k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:672db9222e472629ef577997"], "source_record_id": "irs_soi.ty2023.table_1_1.10k_to_15k.return_count", "value": 8986005} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 10000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 15000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 10000, "agi_upper_usd": 15000, "filing_status": "all", "income_range": "10k_to_15k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=10000, agi upper usd=15000, filing status=all, income range=10k to 15k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 4, "groupby_value_id": "10k_to_15k", "groupby_value_label": "$10,000 under $15,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "10k_to_15k", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:5914b8de515ed267b348f42e"], "source_record_id": "irs_soi.ty2023.table_1_1.10k_to_15k.adjusted_gross_income", "value": 112353814000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 10000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 15000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 10000, "agi_upper_usd": 15000, "filing_status": "all", "income_range": "10k_to_15k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=10000, agi upper usd=15000, filing status=all, income range=10k to 15k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 4, "groupby_value_id": "10k_to_15k", "groupby_value_label": "$10,000 under $15,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "10k_to_15k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:c49d092e66a51c9853b7481b"], "source_record_id": "irs_soi.ty2023.table_1_1.10k_to_15k.total_income_tax", "value": 88533000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 10000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 15000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 10000, "agi_upper_usd": 15000, "filing_status": "all", "income_range": "10k_to_15k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=10000, agi upper usd=15000, filing status=all, income range=10k to 15k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 4, "groupby_value_id": "10k_to_15k", "groupby_value_label": "$10,000 under $15,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "10k_to_15k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:a4f71cae59b3a6b0a62abec8"], "source_record_id": "irs_soi.ty2023.table_1_1.10k_to_15k.income_tax_after_credits_returns", "value": 640711} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 15000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 20000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 15000, "agi_upper_usd": 20000, "filing_status": "all", "income_range": "15k_to_20k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=15000, agi upper usd=20000, filing status=all, income range=15k to 20k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 5, "groupby_value_id": "15k_to_20k", "groupby_value_label": "$15,000 under $20,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "15k_to_20k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:45537963eb128fd35f6dafb5"], "source_record_id": "irs_soi.ty2023.table_1_1.15k_to_20k.return_count", "value": 8702094} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 15000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 20000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 15000, "agi_upper_usd": 20000, "filing_status": "all", "income_range": "15k_to_20k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=15000, agi upper usd=20000, filing status=all, income range=15k to 20k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 5, "groupby_value_id": "15k_to_20k", "groupby_value_label": "$15,000 under $20,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "15k_to_20k", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:17230c1719fb9f0f5c4968c5"], "source_record_id": "irs_soi.ty2023.table_1_1.15k_to_20k.adjusted_gross_income", "value": 151828408000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 15000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 20000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 15000, "agi_upper_usd": 20000, "filing_status": "all", "income_range": "15k_to_20k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=15000, agi upper usd=20000, filing status=all, income range=15k to 20k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 5, "groupby_value_id": "15k_to_20k", "groupby_value_label": "$15,000 under $20,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "15k_to_20k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:34405797a7630c1edfb03be6"], "source_record_id": "irs_soi.ty2023.table_1_1.15k_to_20k.total_income_tax", "value": 1317468000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 15000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 20000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 15000, "agi_upper_usd": 20000, "filing_status": "all", "income_range": "15k_to_20k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=15000, agi upper usd=20000, filing status=all, income range=15k to 20k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 5, "groupby_value_id": "15k_to_20k", "groupby_value_label": "$15,000 under $20,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "15k_to_20k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:ea81f4639f81bb9d067f0e2c"], "source_record_id": "irs_soi.ty2023.table_1_1.15k_to_20k.income_tax_after_credits_returns", "value": 4028010} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 20000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 25000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 20000, "agi_upper_usd": 25000, "filing_status": "all", "income_range": "20k_to_25k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=20000, agi upper usd=25000, filing status=all, income range=20k to 25k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 6, "groupby_value_id": "20k_to_25k", "groupby_value_label": "$20,000 under $25,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "20k_to_25k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:b0312631f8cd32ba4d564707"], "source_record_id": "irs_soi.ty2023.table_1_1.20k_to_25k.return_count", "value": 7925999} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 20000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 25000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 20000, "agi_upper_usd": 25000, "filing_status": "all", "income_range": "20k_to_25k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=20000, agi upper usd=25000, filing status=all, income range=20k to 25k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 6, "groupby_value_id": "20k_to_25k", "groupby_value_label": "$20,000 under $25,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "20k_to_25k", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:62a6567af007c28cbf693e93"], "source_record_id": "irs_soi.ty2023.table_1_1.20k_to_25k.adjusted_gross_income", "value": 178000708000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 20000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 25000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 20000, "agi_upper_usd": 25000, "filing_status": "all", "income_range": "20k_to_25k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=20000, agi upper usd=25000, filing status=all, income range=20k to 25k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 6, "groupby_value_id": "20k_to_25k", "groupby_value_label": "$20,000 under $25,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "20k_to_25k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:158e624e28bd48bdf2865357"], "source_record_id": "irs_soi.ty2023.table_1_1.20k_to_25k.total_income_tax", "value": 3257177000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 20000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 25000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 20000, "agi_upper_usd": 25000, "filing_status": "all", "income_range": "20k_to_25k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=20000, agi upper usd=25000, filing status=all, income range=20k to 25k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 6, "groupby_value_id": "20k_to_25k", "groupby_value_label": "$20,000 under $25,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "20k_to_25k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:c91735fa289d705faa810309"], "source_record_id": "irs_soi.ty2023.table_1_1.20k_to_25k.income_tax_after_credits_returns", "value": 4176659} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 25000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 30000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 25000, "agi_upper_usd": 30000, "filing_status": "all", "income_range": "25k_to_30k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=25000, agi upper usd=30000, filing status=all, income range=25k to 30k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 7, "groupby_value_id": "25k_to_30k", "groupby_value_label": "$25,000 under $30,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "25k_to_30k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:3f4b696f72cc3d854336ae52"], "source_record_id": "irs_soi.ty2023.table_1_1.25k_to_30k.return_count", "value": 7594157} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 25000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 30000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 25000, "agi_upper_usd": 30000, "filing_status": "all", "income_range": "25k_to_30k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=25000, agi upper usd=30000, filing status=all, income range=25k to 30k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 7, "groupby_value_id": "25k_to_30k", "groupby_value_label": "$25,000 under $30,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "25k_to_30k", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:a835afa28b05f037b2e19508"], "source_record_id": "irs_soi.ty2023.table_1_1.25k_to_30k.adjusted_gross_income", "value": 208919443000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 25000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 30000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 25000, "agi_upper_usd": 30000, "filing_status": "all", "income_range": "25k_to_30k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=25000, agi upper usd=30000, filing status=all, income range=25k to 30k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 7, "groupby_value_id": "25k_to_30k", "groupby_value_label": "$25,000 under $30,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "25k_to_30k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:b415ae6a8a379ed0ac4e4667"], "source_record_id": "irs_soi.ty2023.table_1_1.25k_to_30k.total_income_tax", "value": 5552159000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 25000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 30000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 25000, "agi_upper_usd": 30000, "filing_status": "all", "income_range": "25k_to_30k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=25000, agi upper usd=30000, filing status=all, income range=25k to 30k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 7, "groupby_value_id": "25k_to_30k", "groupby_value_label": "$25,000 under $30,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "25k_to_30k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:32eda382fc4064979da75618"], "source_record_id": "irs_soi.ty2023.table_1_1.25k_to_30k.income_tax_after_credits_returns", "value": 4416066} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 30000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 40000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 30000, "agi_upper_usd": 40000, "filing_status": "all", "income_range": "30k_to_40k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=30000, agi upper usd=40000, filing status=all, income range=30k to 40k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 8, "groupby_value_id": "30k_to_40k", "groupby_value_label": "$30,000 under $40,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "30k_to_40k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:0fbff6776403b5959436b0a2"], "source_record_id": "irs_soi.ty2023.table_1_1.30k_to_40k.return_count", "value": 15210266} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 30000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 40000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 30000, "agi_upper_usd": 40000, "filing_status": "all", "income_range": "30k_to_40k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=30000, agi upper usd=40000, filing status=all, income range=30k to 40k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 8, "groupby_value_id": "30k_to_40k", "groupby_value_label": "$30,000 under $40,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "30k_to_40k", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:90c0895d3cb3dfdacab482e1"], "source_record_id": "irs_soi.ty2023.table_1_1.30k_to_40k.adjusted_gross_income", "value": 531782365000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 30000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 40000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 30000, "agi_upper_usd": 40000, "filing_status": "all", "income_range": "30k_to_40k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=30000, agi upper usd=40000, filing status=all, income range=30k to 40k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 8, "groupby_value_id": "30k_to_40k", "groupby_value_label": "$30,000 under $40,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "30k_to_40k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:f7a0209f2f2e7ceba9ec1f61"], "source_record_id": "irs_soi.ty2023.table_1_1.30k_to_40k.total_income_tax", "value": 19428590000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 30000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 40000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 30000, "agi_upper_usd": 40000, "filing_status": "all", "income_range": "30k_to_40k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=30000, agi upper usd=40000, filing status=all, income range=30k to 40k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 8, "groupby_value_id": "30k_to_40k", "groupby_value_label": "$30,000 under $40,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "30k_to_40k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:355de415994a094e1d813712"], "source_record_id": "irs_soi.ty2023.table_1_1.30k_to_40k.income_tax_after_credits_returns", "value": 10192082} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 40000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 50000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 40000, "agi_upper_usd": 50000, "filing_status": "all", "income_range": "40k_to_50k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=40000, agi upper usd=50000, filing status=all, income range=40k to 50k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 9, "groupby_value_id": "40k_to_50k", "groupby_value_label": "$40,000 under $50,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "40k_to_50k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:d17d73b6443c6ce57ac958b3"], "source_record_id": "irs_soi.ty2023.table_1_1.40k_to_50k.return_count", "value": 13519034} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 40000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 50000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 40000, "agi_upper_usd": 50000, "filing_status": "all", "income_range": "40k_to_50k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=40000, agi upper usd=50000, filing status=all, income range=40k to 50k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 9, "groupby_value_id": "40k_to_50k", "groupby_value_label": "$40,000 under $50,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "40k_to_50k", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:de1cd59485532408db38b0c5"], "source_record_id": "irs_soi.ty2023.table_1_1.40k_to_50k.adjusted_gross_income", "value": 606242938000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 40000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 50000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 40000, "agi_upper_usd": 50000, "filing_status": "all", "income_range": "40k_to_50k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=40000, agi upper usd=50000, filing status=all, income range=40k to 50k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 9, "groupby_value_id": "40k_to_50k", "groupby_value_label": "$40,000 under $50,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "40k_to_50k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:5c0eea620b269c73fcca5770"], "source_record_id": "irs_soi.ty2023.table_1_1.40k_to_50k.total_income_tax", "value": 29591551000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 40000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 50000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 40000, "agi_upper_usd": 50000, "filing_status": "all", "income_range": "40k_to_50k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=40000, agi upper usd=50000, filing status=all, income range=40k to 50k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 9, "groupby_value_id": "40k_to_50k", "groupby_value_label": "$40,000 under $50,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "40k_to_50k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:cf2143efd5f7b8bc7fbf2192"], "source_record_id": "irs_soi.ty2023.table_1_1.40k_to_50k.income_tax_after_credits_returns", "value": 10574219} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 50000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 75000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 50000, "agi_upper_usd": 75000, "filing_status": "all", "income_range": "50k_to_75k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=50000, agi upper usd=75000, filing status=all, income range=50k to 75k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 10, "groupby_value_id": "50k_to_75k", "groupby_value_label": "$50,000 under $75,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "50k_to_75k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:3dafbb7175fa56a27612bd41"], "source_record_id": "irs_soi.ty2023.table_1_1.50k_to_75k.return_count", "value": 24135884} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 50000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 75000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 50000, "agi_upper_usd": 75000, "filing_status": "all", "income_range": "50k_to_75k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=50000, agi upper usd=75000, filing status=all, income range=50k to 75k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 10, "groupby_value_id": "50k_to_75k", "groupby_value_label": "$50,000 under $75,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "50k_to_75k", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:f902d5a210fc3debc5a642f6"], "source_record_id": "irs_soi.ty2023.table_1_1.50k_to_75k.adjusted_gross_income", "value": 1485510450000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 50000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 75000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 50000, "agi_upper_usd": 75000, "filing_status": "all", "income_range": "50k_to_75k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=50000, agi upper usd=75000, filing status=all, income range=50k to 75k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 10, "groupby_value_id": "50k_to_75k", "groupby_value_label": "$50,000 under $75,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "50k_to_75k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:0111c7b045cb1ee487c7f312"], "source_record_id": "irs_soi.ty2023.table_1_1.50k_to_75k.total_income_tax", "value": 96759453000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 50000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 75000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 50000, "agi_upper_usd": 75000, "filing_status": "all", "income_range": "50k_to_75k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=50000, agi upper usd=75000, filing status=all, income range=50k to 75k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 10, "groupby_value_id": "50k_to_75k", "groupby_value_label": "$50,000 under $75,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "50k_to_75k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:1f5935b6440fe6a57e19d78f"], "source_record_id": "irs_soi.ty2023.table_1_1.50k_to_75k.income_tax_after_credits_returns", "value": 21494289} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 75000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 100000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 75000, "agi_upper_usd": 100000, "filing_status": "all", "income_range": "75k_to_100k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=75000, agi upper usd=100000, filing status=all, income range=75k to 100k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 11, "groupby_value_id": "75k_to_100k", "groupby_value_label": "$75,000 under $100,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "75k_to_100k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:fec57b4f1e9a035c4d00c5ef"], "source_record_id": "irs_soi.ty2023.table_1_1.75k_to_100k.return_count", "value": 15775468} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 75000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 100000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 75000, "agi_upper_usd": 100000, "filing_status": "all", "income_range": "75k_to_100k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=75000, agi upper usd=100000, filing status=all, income range=75k to 100k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 11, "groupby_value_id": "75k_to_100k", "groupby_value_label": "$75,000 under $100,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "75k_to_100k", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:643e8d75da2af9f1dda832b8"], "source_record_id": "irs_soi.ty2023.table_1_1.75k_to_100k.adjusted_gross_income", "value": 1366616429000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 75000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 100000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 75000, "agi_upper_usd": 100000, "filing_status": "all", "income_range": "75k_to_100k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=75000, agi upper usd=100000, filing status=all, income range=75k to 100k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 11, "groupby_value_id": "75k_to_100k", "groupby_value_label": "$75,000 under $100,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "75k_to_100k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:f08de0554ce7dff8d54e8ee3"], "source_record_id": "irs_soi.ty2023.table_1_1.75k_to_100k.total_income_tax", "value": 114197559000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 75000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 100000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 75000, "agi_upper_usd": 100000, "filing_status": "all", "income_range": "75k_to_100k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=75000, agi upper usd=100000, filing status=all, income range=75k to 100k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 11, "groupby_value_id": "75k_to_100k", "groupby_value_label": "$75,000 under $100,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "75k_to_100k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:d91e4f8c785b1749e5427354"], "source_record_id": "irs_soi.ty2023.table_1_1.75k_to_100k.income_tax_after_credits_returns", "value": 15064744} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 100000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 200000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 100000, "agi_upper_usd": 200000, "filing_status": "all", "income_range": "100k_to_200k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=100000, agi upper usd=200000, filing status=all, income range=100k to 200k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 12, "groupby_value_id": "100k_to_200k", "groupby_value_label": "$100,000 under $200,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "100k_to_200k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:dd032848d8c542f41ead89e8"], "source_record_id": "irs_soi.ty2023.table_1_1.100k_to_200k.return_count", "value": 27602755} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 100000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 200000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 100000, "agi_upper_usd": 200000, "filing_status": "all", "income_range": "100k_to_200k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=100000, agi upper usd=200000, filing status=all, income range=100k to 200k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 12, "groupby_value_id": "100k_to_200k", "groupby_value_label": "$100,000 under $200,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "100k_to_200k", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:20416a106160edba48eee425"], "source_record_id": "irs_soi.ty2023.table_1_1.100k_to_200k.adjusted_gross_income", "value": 3818295141000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 100000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 200000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 100000, "agi_upper_usd": 200000, "filing_status": "all", "income_range": "100k_to_200k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=100000, agi upper usd=200000, filing status=all, income range=100k to 200k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 12, "groupby_value_id": "100k_to_200k", "groupby_value_label": "$100,000 under $200,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "100k_to_200k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:325154d1d7dbd5b9c5fc650d"], "source_record_id": "irs_soi.ty2023.table_1_1.100k_to_200k.total_income_tax", "value": 409532689000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 100000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 200000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 100000, "agi_upper_usd": 200000, "filing_status": "all", "income_range": "100k_to_200k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=100000, agi upper usd=200000, filing status=all, income range=100k to 200k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 12, "groupby_value_id": "100k_to_200k", "groupby_value_label": "$100,000 under $200,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "100k_to_200k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:5a2145887658330d8bc2a5ef"], "source_record_id": "irs_soi.ty2023.table_1_1.100k_to_200k.income_tax_after_credits_returns", "value": 27208705} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 200000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 500000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 200000, "agi_upper_usd": 500000, "filing_status": "all", "income_range": "200k_to_500k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=200000, agi upper usd=500000, filing status=all, income range=200k to 500k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 13, "groupby_value_id": "200k_to_500k", "groupby_value_label": "$200,000 under $500,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "200k_to_500k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:711d49b75298db5e1f045dba"], "source_record_id": "irs_soi.ty2023.table_1_1.200k_to_500k.return_count", "value": 10955818} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 200000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 500000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 200000, "agi_upper_usd": 500000, "filing_status": "all", "income_range": "200k_to_500k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=200000, agi upper usd=500000, filing status=all, income range=200k to 500k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 13, "groupby_value_id": "200k_to_500k", "groupby_value_label": "$200,000 under $500,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "200k_to_500k", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:5267ad143623c9a67f4494ce"], "source_record_id": "irs_soi.ty2023.table_1_1.200k_to_500k.adjusted_gross_income", "value": 3153877437000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 200000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 500000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 200000, "agi_upper_usd": 500000, "filing_status": "all", "income_range": "200k_to_500k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=200000, agi upper usd=500000, filing status=all, income range=200k to 500k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 13, "groupby_value_id": "200k_to_500k", "groupby_value_label": "$200,000 under $500,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "200k_to_500k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:1c0b9c0c5d403fb65ca635c2"], "source_record_id": "irs_soi.ty2023.table_1_1.200k_to_500k.total_income_tax", "value": 513407398000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 200000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 500000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 200000, "agi_upper_usd": 500000, "filing_status": "all", "income_range": "200k_to_500k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=200000, agi upper usd=500000, filing status=all, income range=200k to 500k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 13, "groupby_value_id": "200k_to_500k", "groupby_value_label": "$200,000 under $500,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "200k_to_500k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:bc809587957e03eda3d4ec1a"], "source_record_id": "irs_soi.ty2023.table_1_1.200k_to_500k.income_tax_after_credits_returns", "value": 10916814} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 500000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 1000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 500000, "agi_upper_usd": 1000000, "filing_status": "all", "income_range": "500k_to_1m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=500000, agi upper usd=1000000, filing status=all, income range=500k to 1m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 14, "groupby_value_id": "500k_to_1m", "groupby_value_label": "$500,000 under $1,000,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "500k_to_1m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:c7271e11e795ee028af606c3"], "source_record_id": "irs_soi.ty2023.table_1_1.500k_to_1m.return_count", "value": 1779720} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 500000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 1000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 500000, "agi_upper_usd": 1000000, "filing_status": "all", "income_range": "500k_to_1m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=500000, agi upper usd=1000000, filing status=all, income range=500k to 1m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 14, "groupby_value_id": "500k_to_1m", "groupby_value_label": "$500,000 under $1,000,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "500k_to_1m", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:5cca809f7c7fb7c52cb8c254"], "source_record_id": "irs_soi.ty2023.table_1_1.500k_to_1m.adjusted_gross_income", "value": 1194934962000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 500000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 1000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 500000, "agi_upper_usd": 1000000, "filing_status": "all", "income_range": "500k_to_1m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=500000, agi upper usd=1000000, filing status=all, income range=500k to 1m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 14, "groupby_value_id": "500k_to_1m", "groupby_value_label": "$500,000 under $1,000,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "500k_to_1m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:f9c096208d32b1ebde0908c1"], "source_record_id": "irs_soi.ty2023.table_1_1.500k_to_1m.total_income_tax", "value": 273875800000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 500000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 1000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 500000, "agi_upper_usd": 1000000, "filing_status": "all", "income_range": "500k_to_1m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=500000, agi upper usd=1000000, filing status=all, income range=500k to 1m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 14, "groupby_value_id": "500k_to_1m", "groupby_value_label": "$500,000 under $1,000,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "500k_to_1m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:a729edf3e70229e2b5437d68"], "source_record_id": "irs_soi.ty2023.table_1_1.500k_to_1m.income_tax_after_credits_returns", "value": 1773247} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 1000000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 1500000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 1000000, "agi_upper_usd": 1500000, "filing_status": "all", "income_range": "1m_to_1_5m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=1000000, agi upper usd=1500000, filing status=all, income range=1m to 1 5m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 15, "groupby_value_id": "1m_to_1_5m", "groupby_value_label": "$1,000,000 under $1,500,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "1m_to_1_5m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:fc95bbd4a9d52c008f76c699"], "source_record_id": "irs_soi.ty2023.table_1_1.1m_to_1_5m.return_count", "value": 368931} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 1000000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 1500000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 1000000, "agi_upper_usd": 1500000, "filing_status": "all", "income_range": "1m_to_1_5m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=1000000, agi upper usd=1500000, filing status=all, income range=1m to 1 5m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 15, "groupby_value_id": "1m_to_1_5m", "groupby_value_label": "$1,000,000 under $1,500,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "1m_to_1_5m", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:8d9962b70cb041cdd580deeb"], "source_record_id": "irs_soi.ty2023.table_1_1.1m_to_1_5m.adjusted_gross_income", "value": 443658405000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 1000000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 1500000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 1000000, "agi_upper_usd": 1500000, "filing_status": "all", "income_range": "1m_to_1_5m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=1000000, agi upper usd=1500000, filing status=all, income range=1m to 1 5m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 15, "groupby_value_id": "1m_to_1_5m", "groupby_value_label": "$1,000,000 under $1,500,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "1m_to_1_5m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:e33ed9ce5bc177d8a0b43c54"], "source_record_id": "irs_soi.ty2023.table_1_1.1m_to_1_5m.total_income_tax", "value": 115740460000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 1000000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 1500000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 1000000, "agi_upper_usd": 1500000, "filing_status": "all", "income_range": "1m_to_1_5m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=1000000, agi upper usd=1500000, filing status=all, income range=1m to 1 5m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 15, "groupby_value_id": "1m_to_1_5m", "groupby_value_label": "$1,000,000 under $1,500,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "1m_to_1_5m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:a3b31883f7e32168663dabb1"], "source_record_id": "irs_soi.ty2023.table_1_1.1m_to_1_5m.income_tax_after_credits_returns", "value": 367694} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 1500000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 2000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 1500000, "agi_upper_usd": 2000000, "filing_status": "all", "income_range": "1_5m_to_2m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=1500000, agi upper usd=2000000, filing status=all, income range=1 5m to 2m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 16, "groupby_value_id": "1_5m_to_2m", "groupby_value_label": "$1,500,000 under $2,000,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "1_5m_to_2m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:e9b4c3016b8fc0fa84467827"], "source_record_id": "irs_soi.ty2023.table_1_1.1_5m_to_2m.return_count", "value": 147290} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 1500000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 2000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 1500000, "agi_upper_usd": 2000000, "filing_status": "all", "income_range": "1_5m_to_2m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=1500000, agi upper usd=2000000, filing status=all, income range=1 5m to 2m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 16, "groupby_value_id": "1_5m_to_2m", "groupby_value_label": "$1,500,000 under $2,000,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "1_5m_to_2m", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:411e2cac0767ce26fa6a63e1"], "source_record_id": "irs_soi.ty2023.table_1_1.1_5m_to_2m.adjusted_gross_income", "value": 252903399000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 1500000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 2000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 1500000, "agi_upper_usd": 2000000, "filing_status": "all", "income_range": "1_5m_to_2m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=1500000, agi upper usd=2000000, filing status=all, income range=1 5m to 2m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 16, "groupby_value_id": "1_5m_to_2m", "groupby_value_label": "$1,500,000 under $2,000,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "1_5m_to_2m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:b51a5f7eac0af873708d1b62"], "source_record_id": "irs_soi.ty2023.table_1_1.1_5m_to_2m.total_income_tax", "value": 69021581000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 1500000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 2000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 1500000, "agi_upper_usd": 2000000, "filing_status": "all", "income_range": "1_5m_to_2m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=1500000, agi upper usd=2000000, filing status=all, income range=1 5m to 2m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 16, "groupby_value_id": "1_5m_to_2m", "groupby_value_label": "$1,500,000 under $2,000,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "1_5m_to_2m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:dc4c52186a5e1723249e08ed"], "source_record_id": "irs_soi.ty2023.table_1_1.1_5m_to_2m.income_tax_after_credits_returns", "value": 146550} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 2000000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 5000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 2000000, "agi_upper_usd": 5000000, "filing_status": "all", "income_range": "2m_to_5m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=2000000, agi upper usd=5000000, filing status=all, income range=2m to 5m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 17, "groupby_value_id": "2m_to_5m", "groupby_value_label": "$2,000,000 under $5,000,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "2m_to_5m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:c1f0eb992f99b7cfdda24071"], "source_record_id": "irs_soi.ty2023.table_1_1.2m_to_5m.return_count", "value": 203229} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 2000000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 5000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 2000000, "agi_upper_usd": 5000000, "filing_status": "all", "income_range": "2m_to_5m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=2000000, agi upper usd=5000000, filing status=all, income range=2m to 5m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 17, "groupby_value_id": "2m_to_5m", "groupby_value_label": "$2,000,000 under $5,000,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "2m_to_5m", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:aac883cf2b1ce59f93303802"], "source_record_id": "irs_soi.ty2023.table_1_1.2m_to_5m.adjusted_gross_income", "value": 602653109000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 2000000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 5000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 2000000, "agi_upper_usd": 5000000, "filing_status": "all", "income_range": "2m_to_5m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=2000000, agi upper usd=5000000, filing status=all, income range=2m to 5m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 17, "groupby_value_id": "2m_to_5m", "groupby_value_label": "$2,000,000 under $5,000,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "2m_to_5m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:f6bb630dc38984f1b5f04e03"], "source_record_id": "irs_soi.ty2023.table_1_1.2m_to_5m.total_income_tax", "value": 168461033000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 2000000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 5000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 2000000, "agi_upper_usd": 5000000, "filing_status": "all", "income_range": "2m_to_5m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=2000000, agi upper usd=5000000, filing status=all, income range=2m to 5m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 17, "groupby_value_id": "2m_to_5m", "groupby_value_label": "$2,000,000 under $5,000,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "2m_to_5m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:6051f924e9f4c5608adfcaf7"], "source_record_id": "irs_soi.ty2023.table_1_1.2m_to_5m.income_tax_after_credits_returns", "value": 202338} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 5000000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 10000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 5000000, "agi_upper_usd": 10000000, "filing_status": "all", "income_range": "5m_to_10m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=5000000, agi upper usd=10000000, filing status=all, income range=5m to 10m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 18, "groupby_value_id": "5m_to_10m", "groupby_value_label": "$5,000,000 under $10,000,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "5m_to_10m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:69a1a01ce31d346f713f8484"], "source_record_id": "irs_soi.ty2023.table_1_1.5m_to_10m.return_count", "value": 49262} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 5000000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 10000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 5000000, "agi_upper_usd": 10000000, "filing_status": "all", "income_range": "5m_to_10m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=5000000, agi upper usd=10000000, filing status=all, income range=5m to 10m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 18, "groupby_value_id": "5m_to_10m", "groupby_value_label": "$5,000,000 under $10,000,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "5m_to_10m", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:1cb425b696b9568cc286d7ed"], "source_record_id": "irs_soi.ty2023.table_1_1.5m_to_10m.adjusted_gross_income", "value": 336334760000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 5000000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 10000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 5000000, "agi_upper_usd": 10000000, "filing_status": "all", "income_range": "5m_to_10m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=5000000, agi upper usd=10000000, filing status=all, income range=5m to 10m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 18, "groupby_value_id": "5m_to_10m", "groupby_value_label": "$5,000,000 under $10,000,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "5m_to_10m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:25c6c2d2fc2108eee3d3916b"], "source_record_id": "irs_soi.ty2023.table_1_1.5m_to_10m.total_income_tax", "value": 94042477000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 5000000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 10000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 5000000, "agi_upper_usd": 10000000, "filing_status": "all", "income_range": "5m_to_10m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=5000000, agi upper usd=10000000, filing status=all, income range=5m to 10m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 18, "groupby_value_id": "5m_to_10m", "groupby_value_label": "$5,000,000 under $10,000,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "5m_to_10m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:31d24a3edc283c406bd10c20"], "source_record_id": "irs_soi.ty2023.table_1_1.5m_to_10m.income_tax_after_credits_returns", "value": 49056} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 10000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 10000000, "filing_status": "all", "income_range": "10m_plus"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=10000000, filing status=all, income range=10m plus) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 19, "groupby_value_id": "10m_plus", "groupby_value_label": "$10,000,000 or more", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "10m_plus", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:a0863ef3532fdd89549beaf8"], "source_record_id": "irs_soi.ty2023.table_1_1.10m_plus.return_count", "value": 30382} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 10000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 10000000, "filing_status": "all", "income_range": "10m_plus"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=10000000, filing status=all, income range=10m plus) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 19, "groupby_value_id": "10m_plus", "groupby_value_label": "$10,000,000 or more", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "10m_plus", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:afec0774d7c31446cdfc7450"], "source_record_id": "irs_soi.ty2023.table_1_1.10m_plus.adjusted_gross_income", "value": 907900917000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 10000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 10000000, "filing_status": "all", "income_range": "10m_plus"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=10000000, filing status=all, income range=10m plus) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 19, "groupby_value_id": "10m_plus", "groupby_value_label": "$10,000,000 or more", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "10m_plus", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:435ef10058a92b9fc1edf88b"], "source_record_id": "irs_soi.ty2023.table_1_1.10m_plus.total_income_tax", "value": 233464129000} -{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 10000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 10000000, "filing_status": "all", "income_range": "10m_plus"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=10000000, filing status=all, income range=10m plus) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 19, "groupby_value_id": "10m_plus", "groupby_value_label": "$10,000,000 or more", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "011ac4a343bae6b43ca9da3c", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "10m_plus", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:e27b5a87bb00d439953cbe6b"], "source_record_id": "irs_soi.ty2023.table_1_1.10m_plus.income_tax_after_credits_returns", "value": 30229} +{"aggregation": {"denominator": null, "method": "sum"}, "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"filing_status": "all", "income_range": "all"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (filing status=all, income range=all) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 0, "groupby_value_id": "all", "groupby_value_label": "All returns", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "all", "table_record_kind": "total"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:82f39b2a5aeab53c1b717928"], "source_record_id": "irs_soi.ty2023.table_1_1.all.return_count", "value": 160602107} +{"aggregation": {"denominator": null, "method": "sum"}, "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"filing_status": "all", "income_range": "all"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (filing status=all, income range=all) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 0, "groupby_value_id": "all", "groupby_value_label": "All returns", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "all", "table_record_kind": "total"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:c3d349e26856fb6224303675"], "source_record_id": "irs_soi.ty2023.table_1_1.all.adjusted_gross_income", "value": 15286017359000} +{"aggregation": {"denominator": null, "method": "sum"}, "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"filing_status": "all", "income_range": "all"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (filing status=all, income range=all) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 0, "groupby_value_id": "all", "groupby_value_label": "All returns", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "all", "table_record_kind": "total"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:f38c48e6e2f23204eb997143"], "source_record_id": "irs_soi.ty2023.table_1_1.all.total_income_tax", "value": 2147909818000} +{"aggregation": {"denominator": null, "method": "sum"}, "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"filing_status": "all", "income_range": "all"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (filing status=all, income range=all) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 0, "groupby_value_id": "all", "groupby_value_label": "All returns", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "all", "table_record_kind": "total"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:a38dfdc6310412d2e73b8127"], "source_record_id": "irs_soi.ty2023.table_1_1.all.income_tax_after_credits_returns", "value": 111545061} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 1, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_upper_usd": 1, "filing_status": "all", "income_range": "under_1"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi upper usd=1, filing status=all, income range=under 1) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 1, "groupby_value_id": "under_1", "groupby_value_label": "No adjusted gross income", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "under_1", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:ceb83e9230a93d55f2053863"], "source_record_id": "irs_soi.ty2023.table_1_1.under_1.return_count", "value": 2180146} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 1, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_upper_usd": 1, "filing_status": "all", "income_range": "under_1"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi upper usd=1, filing status=all, income range=under 1) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 1, "groupby_value_id": "under_1", "groupby_value_label": "No adjusted gross income", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "under_1", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:466950fa78f909ef709f6fb1"], "source_record_id": "irs_soi.ty2023.table_1_1.under_1.adjusted_gross_income", "value": -144194936000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 1, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_upper_usd": 1, "filing_status": "all", "income_range": "under_1"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi upper usd=1, filing status=all, income range=under 1) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 1, "groupby_value_id": "under_1", "groupby_value_label": "No adjusted gross income", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "under_1", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:baf9717375de9c436d3145fa"], "source_record_id": "irs_soi.ty2023.table_1_1.under_1.total_income_tax", "value": 114270000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 1, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_upper_usd": 1, "filing_status": "all", "income_range": "under_1"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi upper usd=1, filing status=all, income range=under 1) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 1, "groupby_value_id": "under_1", "groupby_value_label": "No adjusted gross income", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "under_1", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:2a5558c2590d587f45069ff3"], "source_record_id": "irs_soi.ty2023.table_1_1.under_1.income_tax_after_credits_returns", "value": 2094} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 1, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 5000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 1, "agi_upper_usd": 5000, "filing_status": "all", "income_range": "1_to_5k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=1, agi upper usd=5000, filing status=all, income range=1 to 5k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 2, "groupby_value_id": "1_to_5k", "groupby_value_label": "$1 under $5,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "1_to_5k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:9ed3dffe7ec9f552b3e87f32"], "source_record_id": "irs_soi.ty2023.table_1_1.1_to_5k.return_count", "value": 7357751} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 1, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 5000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 1, "agi_upper_usd": 5000, "filing_status": "all", "income_range": "1_to_5k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=1, agi upper usd=5000, filing status=all, income range=1 to 5k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 2, "groupby_value_id": "1_to_5k", "groupby_value_label": "$1 under $5,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "1_to_5k", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:edcb37ab86bd6a3677097395"], "source_record_id": "irs_soi.ty2023.table_1_1.1_to_5k.adjusted_gross_income", "value": 17450063000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 1, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 5000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 1, "agi_upper_usd": 5000, "filing_status": "all", "income_range": "1_to_5k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=1, agi upper usd=5000, filing status=all, income range=1 to 5k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 2, "groupby_value_id": "1_to_5k", "groupby_value_label": "$1 under $5,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "1_to_5k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:74c39ed21f3bec1e7e1dc310"], "source_record_id": "irs_soi.ty2023.table_1_1.1_to_5k.total_income_tax", "value": 15081000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 1, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 5000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 1, "agi_upper_usd": 5000, "filing_status": "all", "income_range": "1_to_5k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=1, agi upper usd=5000, filing status=all, income range=1 to 5k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 2, "groupby_value_id": "1_to_5k", "groupby_value_label": "$1 under $5,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "1_to_5k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:d23f00f39572b45032df6c86"], "source_record_id": "irs_soi.ty2023.table_1_1.1_to_5k.income_tax_after_credits_returns", "value": 120341} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 5000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 10000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 5000, "agi_upper_usd": 10000, "filing_status": "all", "income_range": "5k_to_10k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=5000, agi upper usd=10000, filing status=all, income range=5k to 10k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 3, "groupby_value_id": "5k_to_10k", "groupby_value_label": "$5,000 under $10,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "5k_to_10k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:bc69eccdbbf8bb2f3e287a47"], "source_record_id": "irs_soi.ty2023.table_1_1.5k_to_10k.return_count", "value": 8077917} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 5000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 10000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 5000, "agi_upper_usd": 10000, "filing_status": "all", "income_range": "5k_to_10k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=5000, agi upper usd=10000, filing status=all, income range=5k to 10k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 3, "groupby_value_id": "5k_to_10k", "groupby_value_label": "$5,000 under $10,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "5k_to_10k", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:5d8a501f1302fd90621b23d8"], "source_record_id": "irs_soi.ty2023.table_1_1.5k_to_10k.adjusted_gross_income", "value": 60949546000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 5000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 10000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 5000, "agi_upper_usd": 10000, "filing_status": "all", "income_range": "5k_to_10k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=5000, agi upper usd=10000, filing status=all, income range=5k to 10k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 3, "groupby_value_id": "5k_to_10k", "groupby_value_label": "$5,000 under $10,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "5k_to_10k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:441a5cc260757ac4a2de9e9f"], "source_record_id": "irs_soi.ty2023.table_1_1.5k_to_10k.total_income_tax", "value": 42411000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 5000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 10000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 5000, "agi_upper_usd": 10000, "filing_status": "all", "income_range": "5k_to_10k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=5000, agi upper usd=10000, filing status=all, income range=5k to 10k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 3, "groupby_value_id": "5k_to_10k", "groupby_value_label": "$5,000 under $10,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "5k_to_10k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:eb9b98de2d84d3611d2c1893"], "source_record_id": "irs_soi.ty2023.table_1_1.5k_to_10k.income_tax_after_credits_returns", "value": 141213} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 10000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 15000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 10000, "agi_upper_usd": 15000, "filing_status": "all", "income_range": "10k_to_15k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=10000, agi upper usd=15000, filing status=all, income range=10k to 15k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 4, "groupby_value_id": "10k_to_15k", "groupby_value_label": "$10,000 under $15,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "10k_to_15k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:672db9222e472629ef577997"], "source_record_id": "irs_soi.ty2023.table_1_1.10k_to_15k.return_count", "value": 8986005} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 10000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 15000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 10000, "agi_upper_usd": 15000, "filing_status": "all", "income_range": "10k_to_15k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=10000, agi upper usd=15000, filing status=all, income range=10k to 15k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 4, "groupby_value_id": "10k_to_15k", "groupby_value_label": "$10,000 under $15,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "10k_to_15k", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:5914b8de515ed267b348f42e"], "source_record_id": "irs_soi.ty2023.table_1_1.10k_to_15k.adjusted_gross_income", "value": 112353814000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 10000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 15000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 10000, "agi_upper_usd": 15000, "filing_status": "all", "income_range": "10k_to_15k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=10000, agi upper usd=15000, filing status=all, income range=10k to 15k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 4, "groupby_value_id": "10k_to_15k", "groupby_value_label": "$10,000 under $15,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "10k_to_15k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:c49d092e66a51c9853b7481b"], "source_record_id": "irs_soi.ty2023.table_1_1.10k_to_15k.total_income_tax", "value": 88533000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 10000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 15000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 10000, "agi_upper_usd": 15000, "filing_status": "all", "income_range": "10k_to_15k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=10000, agi upper usd=15000, filing status=all, income range=10k to 15k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 4, "groupby_value_id": "10k_to_15k", "groupby_value_label": "$10,000 under $15,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "10k_to_15k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:a4f71cae59b3a6b0a62abec8"], "source_record_id": "irs_soi.ty2023.table_1_1.10k_to_15k.income_tax_after_credits_returns", "value": 640711} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 15000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 20000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 15000, "agi_upper_usd": 20000, "filing_status": "all", "income_range": "15k_to_20k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=15000, agi upper usd=20000, filing status=all, income range=15k to 20k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 5, "groupby_value_id": "15k_to_20k", "groupby_value_label": "$15,000 under $20,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "15k_to_20k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:45537963eb128fd35f6dafb5"], "source_record_id": "irs_soi.ty2023.table_1_1.15k_to_20k.return_count", "value": 8702094} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 15000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 20000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 15000, "agi_upper_usd": 20000, "filing_status": "all", "income_range": "15k_to_20k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=15000, agi upper usd=20000, filing status=all, income range=15k to 20k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 5, "groupby_value_id": "15k_to_20k", "groupby_value_label": "$15,000 under $20,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "15k_to_20k", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:17230c1719fb9f0f5c4968c5"], "source_record_id": "irs_soi.ty2023.table_1_1.15k_to_20k.adjusted_gross_income", "value": 151828408000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 15000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 20000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 15000, "agi_upper_usd": 20000, "filing_status": "all", "income_range": "15k_to_20k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=15000, agi upper usd=20000, filing status=all, income range=15k to 20k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 5, "groupby_value_id": "15k_to_20k", "groupby_value_label": "$15,000 under $20,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "15k_to_20k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:34405797a7630c1edfb03be6"], "source_record_id": "irs_soi.ty2023.table_1_1.15k_to_20k.total_income_tax", "value": 1317468000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 15000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 20000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 15000, "agi_upper_usd": 20000, "filing_status": "all", "income_range": "15k_to_20k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=15000, agi upper usd=20000, filing status=all, income range=15k to 20k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 5, "groupby_value_id": "15k_to_20k", "groupby_value_label": "$15,000 under $20,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "15k_to_20k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:ea81f4639f81bb9d067f0e2c"], "source_record_id": "irs_soi.ty2023.table_1_1.15k_to_20k.income_tax_after_credits_returns", "value": 4028010} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 20000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 25000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 20000, "agi_upper_usd": 25000, "filing_status": "all", "income_range": "20k_to_25k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=20000, agi upper usd=25000, filing status=all, income range=20k to 25k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 6, "groupby_value_id": "20k_to_25k", "groupby_value_label": "$20,000 under $25,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "20k_to_25k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:b0312631f8cd32ba4d564707"], "source_record_id": "irs_soi.ty2023.table_1_1.20k_to_25k.return_count", "value": 7925999} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 20000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 25000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 20000, "agi_upper_usd": 25000, "filing_status": "all", "income_range": "20k_to_25k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=20000, agi upper usd=25000, filing status=all, income range=20k to 25k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 6, "groupby_value_id": "20k_to_25k", "groupby_value_label": "$20,000 under $25,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "20k_to_25k", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:62a6567af007c28cbf693e93"], "source_record_id": "irs_soi.ty2023.table_1_1.20k_to_25k.adjusted_gross_income", "value": 178000708000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 20000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 25000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 20000, "agi_upper_usd": 25000, "filing_status": "all", "income_range": "20k_to_25k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=20000, agi upper usd=25000, filing status=all, income range=20k to 25k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 6, "groupby_value_id": "20k_to_25k", "groupby_value_label": "$20,000 under $25,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "20k_to_25k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:158e624e28bd48bdf2865357"], "source_record_id": "irs_soi.ty2023.table_1_1.20k_to_25k.total_income_tax", "value": 3257177000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 20000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 25000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 20000, "agi_upper_usd": 25000, "filing_status": "all", "income_range": "20k_to_25k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=20000, agi upper usd=25000, filing status=all, income range=20k to 25k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 6, "groupby_value_id": "20k_to_25k", "groupby_value_label": "$20,000 under $25,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "20k_to_25k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:c91735fa289d705faa810309"], "source_record_id": "irs_soi.ty2023.table_1_1.20k_to_25k.income_tax_after_credits_returns", "value": 4176659} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 25000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 30000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 25000, "agi_upper_usd": 30000, "filing_status": "all", "income_range": "25k_to_30k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=25000, agi upper usd=30000, filing status=all, income range=25k to 30k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 7, "groupby_value_id": "25k_to_30k", "groupby_value_label": "$25,000 under $30,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "25k_to_30k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:3f4b696f72cc3d854336ae52"], "source_record_id": "irs_soi.ty2023.table_1_1.25k_to_30k.return_count", "value": 7594157} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 25000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 30000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 25000, "agi_upper_usd": 30000, "filing_status": "all", "income_range": "25k_to_30k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=25000, agi upper usd=30000, filing status=all, income range=25k to 30k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 7, "groupby_value_id": "25k_to_30k", "groupby_value_label": "$25,000 under $30,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "25k_to_30k", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:a835afa28b05f037b2e19508"], "source_record_id": "irs_soi.ty2023.table_1_1.25k_to_30k.adjusted_gross_income", "value": 208919443000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 25000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 30000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 25000, "agi_upper_usd": 30000, "filing_status": "all", "income_range": "25k_to_30k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=25000, agi upper usd=30000, filing status=all, income range=25k to 30k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 7, "groupby_value_id": "25k_to_30k", "groupby_value_label": "$25,000 under $30,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "25k_to_30k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:b415ae6a8a379ed0ac4e4667"], "source_record_id": "irs_soi.ty2023.table_1_1.25k_to_30k.total_income_tax", "value": 5552159000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 25000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 30000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 25000, "agi_upper_usd": 30000, "filing_status": "all", "income_range": "25k_to_30k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=25000, agi upper usd=30000, filing status=all, income range=25k to 30k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 7, "groupby_value_id": "25k_to_30k", "groupby_value_label": "$25,000 under $30,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "25k_to_30k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:32eda382fc4064979da75618"], "source_record_id": "irs_soi.ty2023.table_1_1.25k_to_30k.income_tax_after_credits_returns", "value": 4416066} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 30000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 40000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 30000, "agi_upper_usd": 40000, "filing_status": "all", "income_range": "30k_to_40k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=30000, agi upper usd=40000, filing status=all, income range=30k to 40k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 8, "groupby_value_id": "30k_to_40k", "groupby_value_label": "$30,000 under $40,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "30k_to_40k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:0fbff6776403b5959436b0a2"], "source_record_id": "irs_soi.ty2023.table_1_1.30k_to_40k.return_count", "value": 15210266} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 30000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 40000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 30000, "agi_upper_usd": 40000, "filing_status": "all", "income_range": "30k_to_40k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=30000, agi upper usd=40000, filing status=all, income range=30k to 40k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 8, "groupby_value_id": "30k_to_40k", "groupby_value_label": "$30,000 under $40,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "30k_to_40k", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:90c0895d3cb3dfdacab482e1"], "source_record_id": "irs_soi.ty2023.table_1_1.30k_to_40k.adjusted_gross_income", "value": 531782365000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 30000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 40000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 30000, "agi_upper_usd": 40000, "filing_status": "all", "income_range": "30k_to_40k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=30000, agi upper usd=40000, filing status=all, income range=30k to 40k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 8, "groupby_value_id": "30k_to_40k", "groupby_value_label": "$30,000 under $40,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "30k_to_40k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:f7a0209f2f2e7ceba9ec1f61"], "source_record_id": "irs_soi.ty2023.table_1_1.30k_to_40k.total_income_tax", "value": 19428590000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 30000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 40000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 30000, "agi_upper_usd": 40000, "filing_status": "all", "income_range": "30k_to_40k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=30000, agi upper usd=40000, filing status=all, income range=30k to 40k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 8, "groupby_value_id": "30k_to_40k", "groupby_value_label": "$30,000 under $40,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "30k_to_40k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:355de415994a094e1d813712"], "source_record_id": "irs_soi.ty2023.table_1_1.30k_to_40k.income_tax_after_credits_returns", "value": 10192082} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 40000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 50000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 40000, "agi_upper_usd": 50000, "filing_status": "all", "income_range": "40k_to_50k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=40000, agi upper usd=50000, filing status=all, income range=40k to 50k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 9, "groupby_value_id": "40k_to_50k", "groupby_value_label": "$40,000 under $50,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "40k_to_50k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:d17d73b6443c6ce57ac958b3"], "source_record_id": "irs_soi.ty2023.table_1_1.40k_to_50k.return_count", "value": 13519034} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 40000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 50000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 40000, "agi_upper_usd": 50000, "filing_status": "all", "income_range": "40k_to_50k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=40000, agi upper usd=50000, filing status=all, income range=40k to 50k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 9, "groupby_value_id": "40k_to_50k", "groupby_value_label": "$40,000 under $50,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "40k_to_50k", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:de1cd59485532408db38b0c5"], "source_record_id": "irs_soi.ty2023.table_1_1.40k_to_50k.adjusted_gross_income", "value": 606242938000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 40000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 50000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 40000, "agi_upper_usd": 50000, "filing_status": "all", "income_range": "40k_to_50k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=40000, agi upper usd=50000, filing status=all, income range=40k to 50k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 9, "groupby_value_id": "40k_to_50k", "groupby_value_label": "$40,000 under $50,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "40k_to_50k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:5c0eea620b269c73fcca5770"], "source_record_id": "irs_soi.ty2023.table_1_1.40k_to_50k.total_income_tax", "value": 29591551000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 40000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 50000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 40000, "agi_upper_usd": 50000, "filing_status": "all", "income_range": "40k_to_50k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=40000, agi upper usd=50000, filing status=all, income range=40k to 50k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 9, "groupby_value_id": "40k_to_50k", "groupby_value_label": "$40,000 under $50,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "40k_to_50k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:cf2143efd5f7b8bc7fbf2192"], "source_record_id": "irs_soi.ty2023.table_1_1.40k_to_50k.income_tax_after_credits_returns", "value": 10574219} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 50000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 75000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 50000, "agi_upper_usd": 75000, "filing_status": "all", "income_range": "50k_to_75k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=50000, agi upper usd=75000, filing status=all, income range=50k to 75k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 10, "groupby_value_id": "50k_to_75k", "groupby_value_label": "$50,000 under $75,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "50k_to_75k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:3dafbb7175fa56a27612bd41"], "source_record_id": "irs_soi.ty2023.table_1_1.50k_to_75k.return_count", "value": 24135884} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 50000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 75000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 50000, "agi_upper_usd": 75000, "filing_status": "all", "income_range": "50k_to_75k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=50000, agi upper usd=75000, filing status=all, income range=50k to 75k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 10, "groupby_value_id": "50k_to_75k", "groupby_value_label": "$50,000 under $75,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "50k_to_75k", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:f902d5a210fc3debc5a642f6"], "source_record_id": "irs_soi.ty2023.table_1_1.50k_to_75k.adjusted_gross_income", "value": 1485510450000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 50000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 75000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 50000, "agi_upper_usd": 75000, "filing_status": "all", "income_range": "50k_to_75k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=50000, agi upper usd=75000, filing status=all, income range=50k to 75k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 10, "groupby_value_id": "50k_to_75k", "groupby_value_label": "$50,000 under $75,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "50k_to_75k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:0111c7b045cb1ee487c7f312"], "source_record_id": "irs_soi.ty2023.table_1_1.50k_to_75k.total_income_tax", "value": 96759453000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 50000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 75000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 50000, "agi_upper_usd": 75000, "filing_status": "all", "income_range": "50k_to_75k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=50000, agi upper usd=75000, filing status=all, income range=50k to 75k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 10, "groupby_value_id": "50k_to_75k", "groupby_value_label": "$50,000 under $75,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "50k_to_75k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:1f5935b6440fe6a57e19d78f"], "source_record_id": "irs_soi.ty2023.table_1_1.50k_to_75k.income_tax_after_credits_returns", "value": 21494289} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 75000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 100000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 75000, "agi_upper_usd": 100000, "filing_status": "all", "income_range": "75k_to_100k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=75000, agi upper usd=100000, filing status=all, income range=75k to 100k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 11, "groupby_value_id": "75k_to_100k", "groupby_value_label": "$75,000 under $100,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "75k_to_100k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:fec57b4f1e9a035c4d00c5ef"], "source_record_id": "irs_soi.ty2023.table_1_1.75k_to_100k.return_count", "value": 15775468} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 75000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 100000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 75000, "agi_upper_usd": 100000, "filing_status": "all", "income_range": "75k_to_100k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=75000, agi upper usd=100000, filing status=all, income range=75k to 100k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 11, "groupby_value_id": "75k_to_100k", "groupby_value_label": "$75,000 under $100,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "75k_to_100k", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:643e8d75da2af9f1dda832b8"], "source_record_id": "irs_soi.ty2023.table_1_1.75k_to_100k.adjusted_gross_income", "value": 1366616429000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 75000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 100000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 75000, "agi_upper_usd": 100000, "filing_status": "all", "income_range": "75k_to_100k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=75000, agi upper usd=100000, filing status=all, income range=75k to 100k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 11, "groupby_value_id": "75k_to_100k", "groupby_value_label": "$75,000 under $100,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "75k_to_100k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:f08de0554ce7dff8d54e8ee3"], "source_record_id": "irs_soi.ty2023.table_1_1.75k_to_100k.total_income_tax", "value": 114197559000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 75000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 100000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 75000, "agi_upper_usd": 100000, "filing_status": "all", "income_range": "75k_to_100k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=75000, agi upper usd=100000, filing status=all, income range=75k to 100k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 11, "groupby_value_id": "75k_to_100k", "groupby_value_label": "$75,000 under $100,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "75k_to_100k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:d91e4f8c785b1749e5427354"], "source_record_id": "irs_soi.ty2023.table_1_1.75k_to_100k.income_tax_after_credits_returns", "value": 15064744} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 100000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 200000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 100000, "agi_upper_usd": 200000, "filing_status": "all", "income_range": "100k_to_200k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=100000, agi upper usd=200000, filing status=all, income range=100k to 200k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 12, "groupby_value_id": "100k_to_200k", "groupby_value_label": "$100,000 under $200,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "100k_to_200k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:dd032848d8c542f41ead89e8"], "source_record_id": "irs_soi.ty2023.table_1_1.100k_to_200k.return_count", "value": 27602755} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 100000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 200000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 100000, "agi_upper_usd": 200000, "filing_status": "all", "income_range": "100k_to_200k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=100000, agi upper usd=200000, filing status=all, income range=100k to 200k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 12, "groupby_value_id": "100k_to_200k", "groupby_value_label": "$100,000 under $200,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "100k_to_200k", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:20416a106160edba48eee425"], "source_record_id": "irs_soi.ty2023.table_1_1.100k_to_200k.adjusted_gross_income", "value": 3818295141000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 100000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 200000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 100000, "agi_upper_usd": 200000, "filing_status": "all", "income_range": "100k_to_200k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=100000, agi upper usd=200000, filing status=all, income range=100k to 200k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 12, "groupby_value_id": "100k_to_200k", "groupby_value_label": "$100,000 under $200,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "100k_to_200k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:325154d1d7dbd5b9c5fc650d"], "source_record_id": "irs_soi.ty2023.table_1_1.100k_to_200k.total_income_tax", "value": 409532689000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 100000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 200000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 100000, "agi_upper_usd": 200000, "filing_status": "all", "income_range": "100k_to_200k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=100000, agi upper usd=200000, filing status=all, income range=100k to 200k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 12, "groupby_value_id": "100k_to_200k", "groupby_value_label": "$100,000 under $200,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "100k_to_200k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:5a2145887658330d8bc2a5ef"], "source_record_id": "irs_soi.ty2023.table_1_1.100k_to_200k.income_tax_after_credits_returns", "value": 27208705} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 200000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 500000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 200000, "agi_upper_usd": 500000, "filing_status": "all", "income_range": "200k_to_500k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=200000, agi upper usd=500000, filing status=all, income range=200k to 500k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 13, "groupby_value_id": "200k_to_500k", "groupby_value_label": "$200,000 under $500,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "200k_to_500k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:711d49b75298db5e1f045dba"], "source_record_id": "irs_soi.ty2023.table_1_1.200k_to_500k.return_count", "value": 10955818} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 200000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 500000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 200000, "agi_upper_usd": 500000, "filing_status": "all", "income_range": "200k_to_500k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=200000, agi upper usd=500000, filing status=all, income range=200k to 500k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 13, "groupby_value_id": "200k_to_500k", "groupby_value_label": "$200,000 under $500,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "200k_to_500k", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:5267ad143623c9a67f4494ce"], "source_record_id": "irs_soi.ty2023.table_1_1.200k_to_500k.adjusted_gross_income", "value": 3153877437000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 200000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 500000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 200000, "agi_upper_usd": 500000, "filing_status": "all", "income_range": "200k_to_500k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=200000, agi upper usd=500000, filing status=all, income range=200k to 500k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 13, "groupby_value_id": "200k_to_500k", "groupby_value_label": "$200,000 under $500,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "200k_to_500k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:1c0b9c0c5d403fb65ca635c2"], "source_record_id": "irs_soi.ty2023.table_1_1.200k_to_500k.total_income_tax", "value": 513407398000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 200000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 500000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 200000, "agi_upper_usd": 500000, "filing_status": "all", "income_range": "200k_to_500k"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=200000, agi upper usd=500000, filing status=all, income range=200k to 500k) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 13, "groupby_value_id": "200k_to_500k", "groupby_value_label": "$200,000 under $500,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "200k_to_500k", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:bc809587957e03eda3d4ec1a"], "source_record_id": "irs_soi.ty2023.table_1_1.200k_to_500k.income_tax_after_credits_returns", "value": 10916814} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 500000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 1000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 500000, "agi_upper_usd": 1000000, "filing_status": "all", "income_range": "500k_to_1m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=500000, agi upper usd=1000000, filing status=all, income range=500k to 1m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 14, "groupby_value_id": "500k_to_1m", "groupby_value_label": "$500,000 under $1,000,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "500k_to_1m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:c7271e11e795ee028af606c3"], "source_record_id": "irs_soi.ty2023.table_1_1.500k_to_1m.return_count", "value": 1779720} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 500000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 1000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 500000, "agi_upper_usd": 1000000, "filing_status": "all", "income_range": "500k_to_1m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=500000, agi upper usd=1000000, filing status=all, income range=500k to 1m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 14, "groupby_value_id": "500k_to_1m", "groupby_value_label": "$500,000 under $1,000,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "500k_to_1m", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:5cca809f7c7fb7c52cb8c254"], "source_record_id": "irs_soi.ty2023.table_1_1.500k_to_1m.adjusted_gross_income", "value": 1194934962000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 500000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 1000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 500000, "agi_upper_usd": 1000000, "filing_status": "all", "income_range": "500k_to_1m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=500000, agi upper usd=1000000, filing status=all, income range=500k to 1m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 14, "groupby_value_id": "500k_to_1m", "groupby_value_label": "$500,000 under $1,000,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "500k_to_1m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:f9c096208d32b1ebde0908c1"], "source_record_id": "irs_soi.ty2023.table_1_1.500k_to_1m.total_income_tax", "value": 273875800000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 500000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 1000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 500000, "agi_upper_usd": 1000000, "filing_status": "all", "income_range": "500k_to_1m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=500000, agi upper usd=1000000, filing status=all, income range=500k to 1m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 14, "groupby_value_id": "500k_to_1m", "groupby_value_label": "$500,000 under $1,000,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "500k_to_1m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:a729edf3e70229e2b5437d68"], "source_record_id": "irs_soi.ty2023.table_1_1.500k_to_1m.income_tax_after_credits_returns", "value": 1773247} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 1000000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 1500000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 1000000, "agi_upper_usd": 1500000, "filing_status": "all", "income_range": "1m_to_1_5m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=1000000, agi upper usd=1500000, filing status=all, income range=1m to 1 5m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 15, "groupby_value_id": "1m_to_1_5m", "groupby_value_label": "$1,000,000 under $1,500,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "1m_to_1_5m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:fc95bbd4a9d52c008f76c699"], "source_record_id": "irs_soi.ty2023.table_1_1.1m_to_1_5m.return_count", "value": 368931} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 1000000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 1500000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 1000000, "agi_upper_usd": 1500000, "filing_status": "all", "income_range": "1m_to_1_5m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=1000000, agi upper usd=1500000, filing status=all, income range=1m to 1 5m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 15, "groupby_value_id": "1m_to_1_5m", "groupby_value_label": "$1,000,000 under $1,500,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "1m_to_1_5m", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:8d9962b70cb041cdd580deeb"], "source_record_id": "irs_soi.ty2023.table_1_1.1m_to_1_5m.adjusted_gross_income", "value": 443658405000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 1000000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 1500000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 1000000, "agi_upper_usd": 1500000, "filing_status": "all", "income_range": "1m_to_1_5m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=1000000, agi upper usd=1500000, filing status=all, income range=1m to 1 5m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 15, "groupby_value_id": "1m_to_1_5m", "groupby_value_label": "$1,000,000 under $1,500,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "1m_to_1_5m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:e33ed9ce5bc177d8a0b43c54"], "source_record_id": "irs_soi.ty2023.table_1_1.1m_to_1_5m.total_income_tax", "value": 115740460000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 1000000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 1500000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 1000000, "agi_upper_usd": 1500000, "filing_status": "all", "income_range": "1m_to_1_5m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=1000000, agi upper usd=1500000, filing status=all, income range=1m to 1 5m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 15, "groupby_value_id": "1m_to_1_5m", "groupby_value_label": "$1,000,000 under $1,500,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "1m_to_1_5m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:a3b31883f7e32168663dabb1"], "source_record_id": "irs_soi.ty2023.table_1_1.1m_to_1_5m.income_tax_after_credits_returns", "value": 367694} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 1500000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 2000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 1500000, "agi_upper_usd": 2000000, "filing_status": "all", "income_range": "1_5m_to_2m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=1500000, agi upper usd=2000000, filing status=all, income range=1 5m to 2m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 16, "groupby_value_id": "1_5m_to_2m", "groupby_value_label": "$1,500,000 under $2,000,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "1_5m_to_2m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:e9b4c3016b8fc0fa84467827"], "source_record_id": "irs_soi.ty2023.table_1_1.1_5m_to_2m.return_count", "value": 147290} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 1500000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 2000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 1500000, "agi_upper_usd": 2000000, "filing_status": "all", "income_range": "1_5m_to_2m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=1500000, agi upper usd=2000000, filing status=all, income range=1 5m to 2m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 16, "groupby_value_id": "1_5m_to_2m", "groupby_value_label": "$1,500,000 under $2,000,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "1_5m_to_2m", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:411e2cac0767ce26fa6a63e1"], "source_record_id": "irs_soi.ty2023.table_1_1.1_5m_to_2m.adjusted_gross_income", "value": 252903399000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 1500000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 2000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 1500000, "agi_upper_usd": 2000000, "filing_status": "all", "income_range": "1_5m_to_2m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=1500000, agi upper usd=2000000, filing status=all, income range=1 5m to 2m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 16, "groupby_value_id": "1_5m_to_2m", "groupby_value_label": "$1,500,000 under $2,000,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "1_5m_to_2m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:b51a5f7eac0af873708d1b62"], "source_record_id": "irs_soi.ty2023.table_1_1.1_5m_to_2m.total_income_tax", "value": 69021581000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 1500000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 2000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 1500000, "agi_upper_usd": 2000000, "filing_status": "all", "income_range": "1_5m_to_2m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=1500000, agi upper usd=2000000, filing status=all, income range=1 5m to 2m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 16, "groupby_value_id": "1_5m_to_2m", "groupby_value_label": "$1,500,000 under $2,000,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "1_5m_to_2m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:dc4c52186a5e1723249e08ed"], "source_record_id": "irs_soi.ty2023.table_1_1.1_5m_to_2m.income_tax_after_credits_returns", "value": 146550} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 2000000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 5000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 2000000, "agi_upper_usd": 5000000, "filing_status": "all", "income_range": "2m_to_5m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=2000000, agi upper usd=5000000, filing status=all, income range=2m to 5m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 17, "groupby_value_id": "2m_to_5m", "groupby_value_label": "$2,000,000 under $5,000,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "2m_to_5m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:c1f0eb992f99b7cfdda24071"], "source_record_id": "irs_soi.ty2023.table_1_1.2m_to_5m.return_count", "value": 203229} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 2000000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 5000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 2000000, "agi_upper_usd": 5000000, "filing_status": "all", "income_range": "2m_to_5m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=2000000, agi upper usd=5000000, filing status=all, income range=2m to 5m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 17, "groupby_value_id": "2m_to_5m", "groupby_value_label": "$2,000,000 under $5,000,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "2m_to_5m", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:aac883cf2b1ce59f93303802"], "source_record_id": "irs_soi.ty2023.table_1_1.2m_to_5m.adjusted_gross_income", "value": 602653109000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 2000000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 5000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 2000000, "agi_upper_usd": 5000000, "filing_status": "all", "income_range": "2m_to_5m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=2000000, agi upper usd=5000000, filing status=all, income range=2m to 5m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 17, "groupby_value_id": "2m_to_5m", "groupby_value_label": "$2,000,000 under $5,000,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "2m_to_5m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:f6bb630dc38984f1b5f04e03"], "source_record_id": "irs_soi.ty2023.table_1_1.2m_to_5m.total_income_tax", "value": 168461033000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 2000000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 5000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 2000000, "agi_upper_usd": 5000000, "filing_status": "all", "income_range": "2m_to_5m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=2000000, agi upper usd=5000000, filing status=all, income range=2m to 5m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 17, "groupby_value_id": "2m_to_5m", "groupby_value_label": "$2,000,000 under $5,000,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "2m_to_5m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:6051f924e9f4c5608adfcaf7"], "source_record_id": "irs_soi.ty2023.table_1_1.2m_to_5m.income_tax_after_credits_returns", "value": 202338} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 5000000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 10000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 5000000, "agi_upper_usd": 10000000, "filing_status": "all", "income_range": "5m_to_10m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=5000000, agi upper usd=10000000, filing status=all, income range=5m to 10m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 18, "groupby_value_id": "5m_to_10m", "groupby_value_label": "$5,000,000 under $10,000,000", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "5m_to_10m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:69a1a01ce31d346f713f8484"], "source_record_id": "irs_soi.ty2023.table_1_1.5m_to_10m.return_count", "value": 49262} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 5000000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 10000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 5000000, "agi_upper_usd": 10000000, "filing_status": "all", "income_range": "5m_to_10m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=5000000, agi upper usd=10000000, filing status=all, income range=5m to 10m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 18, "groupby_value_id": "5m_to_10m", "groupby_value_label": "$5,000,000 under $10,000,000", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "5m_to_10m", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:1cb425b696b9568cc286d7ed"], "source_record_id": "irs_soi.ty2023.table_1_1.5m_to_10m.adjusted_gross_income", "value": 336334760000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 5000000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 10000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 5000000, "agi_upper_usd": 10000000, "filing_status": "all", "income_range": "5m_to_10m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=5000000, agi upper usd=10000000, filing status=all, income range=5m to 10m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 18, "groupby_value_id": "5m_to_10m", "groupby_value_label": "$5,000,000 under $10,000,000", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "5m_to_10m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:25c6c2d2fc2108eee3d3916b"], "source_record_id": "irs_soi.ty2023.table_1_1.5m_to_10m.total_income_tax", "value": 94042477000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 5000000, "variable": "us:statutes/26/62#adjusted_gross_income"}, {"label": "Adjusted gross income upper bound", "operator": "<", "role": "filter", "unit": "usd", "value": 10000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 5000000, "agi_upper_usd": 10000000, "filing_status": "all", "income_range": "5m_to_10m"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=5000000, agi upper usd=10000000, filing status=all, income range=5m to 10m) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 18, "groupby_value_id": "5m_to_10m", "groupby_value_label": "$5,000,000 under $10,000,000", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "5m_to_10m", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:31d24a3edc283c406bd10c20"], "source_record_id": "irs_soi.ty2023.table_1_1.5m_to_10m.income_tax_after_credits_returns", "value": 49056} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 10000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 10000000, "filing_status": "all", "income_range": "10m_plus"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi individual income tax returns for tax unit (agi lower usd=10000000, filing status=all, income range=10m plus) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 19, "groupby_value_id": "10m_plus", "groupby_value_label": "$10,000,000 or more", "measure_id": "return_count", "measure_label": "Number of returns", "measure_ordinal": 0, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "return_count", "source_row_id": "10m_plus", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.individual_income_tax_returns", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:a0863ef3532fdd89549beaf8"], "source_record_id": "irs_soi.ty2023.table_1_1.10m_plus.return_count", "value": 30382} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 10000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 10000000, "filing_status": "all", "income_range": "10m_plus"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum us:statutes/26/62#adjusted gross income for tax unit (agi lower usd=10000000, filing status=all, income range=10m plus) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 19, "groupby_value_id": "10m_plus", "groupby_value_label": "$10,000,000 or more", "measure_id": "adjusted_gross_income", "measure_label": "Adjusted gross income", "measure_ordinal": 1, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "adjusted_gross_income", "source_row_id": "10m_plus", "table_record_kind": "detail"}, "measure": {"concept": "us:statutes/26/62#adjusted_gross_income", "concept_authority": "ledger-us", "concept_evidence_notes": "IRS SOI Table 1.1 reports adjusted gross income for individual income tax returns; IRC section 62 defines adjusted gross income. This Ledger assertion treats the SOI AGI column as exactly adopting that legal concept for the tax-year source record.", "concept_evidence_url": "https://uscode.house.gov/view.xhtml?req=(title:26%20section:62%20edition:prelim)", "concept_relation": "exact", "legal_vintage": "tax_year_2023", "source_concept": "irs_soi.adjusted_gross_income", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:afec0774d7c31446cdfc7450"], "source_record_id": "irs_soi.ty2023.table_1_1.10m_plus.adjusted_gross_income", "value": 907900917000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 10000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 10000000, "filing_status": "all", "income_range": "10m_plus"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year sum irs soi total income tax for tax unit (agi lower usd=10000000, filing status=all, income range=10m plus) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 19, "groupby_value_id": "10m_plus", "groupby_value_label": "$10,000,000 or more", "measure_id": "total_income_tax", "measure_label": "Total income tax", "measure_ordinal": 2, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "total_income_tax", "source_row_id": "10m_plus", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.total_income_tax", "unit": "usd"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:435ef10058a92b9fc1edf88b"], "source_record_id": "irs_soi.ty2023.table_1_1.10m_plus.total_income_tax", "value": 233464129000} +{"aggregation": {"denominator": null, "method": "sum"}, "constraints": [{"label": "Adjusted gross income lower bound", "operator": ">=", "role": "filter", "unit": "usd", "value": 10000000, "variable": "us:statutes/26/62#adjusted_gross_income"}], "domain": "all_individual_income_tax_returns", "entity": {"name": "tax_unit", "role": "filing_unit"}, "filters": {"agi_lower_usd": 10000000, "filing_status": "all", "income_range": "10m_plus"}, "geography": {"id": "0100000US", "level": "country", "name": "United States", "vintage": "2020_census"}, "label": "United States 2023 tax year count irs soi returns with income tax after credits for tax unit (agi lower usd=10000000, filing status=all, income range=10m plus) [irs_soi Publication 1304 Table 1.1 23in11si.xls tax_year_2023]", "layout": {"groupby_dimension": "us:statutes/26/62#adjusted_gross_income", "groupby_ordinal": 19, "groupby_value_id": "10m_plus", "groupby_value_label": "$10,000,000 or more", "measure_id": "income_tax_after_credits_returns", "measure_label": "Returns with income tax after credits", "measure_ordinal": 3, "record_set_id": "irs_soi.ty2023.table_1_1", "record_set_spec_hash": "a1ecc4d67a3d281548a4660e", "record_set_spec_id": "irs_soi.table_1_1.v1", "source_column_id": "income_tax_after_credits_returns", "source_row_id": "10m_plus", "table_record_kind": "detail"}, "measure": {"concept": "irs_soi.returns_with_income_tax_after_credits", "unit": "count"}, "period": {"type": "tax_year", "value": 2023}, "provenance_class": "administrative", "source": {"extracted_at": "2026-05-04", "extraction_method": "CellSelectorSpec and SourceRecordSpec resolved from cells", "method_notes": "Each fact carries source_record_id, source_cell_keys, and source_row_keys when available.", "raw_r2_bucket": "ledger-raw", "raw_r2_key": "raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "raw_r2_uri": "r2://ledger-raw/raw/irs_soi/soi-table-1-1/2023/842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17/23in11si.xls", "source_file": "23in11si.xls", "source_name": "irs_soi", "source_sha256": "842da11fe09123796c861e919d16011ef161338de1c172d39064bdfa666aca17", "source_size_bytes": 54272, "source_table": "Publication 1304 Table 1.1", "url": "https://www.irs.gov/pub/irs-soi/23in11si.xls", "vintage": "tax_year_2023"}, "source_cell_keys": ["ledger.source_cell.v1:e27b5a87bb00d439953cbe6b"], "source_record_id": "irs_soi.ty2023.table_1_1.10m_plus.income_tax_after_credits_returns", "value": 30229} diff --git a/ledger/jurisdictions/us/soi.py b/ledger/jurisdictions/us/soi.py index 675e85d..b7883b3 100644 --- a/ledger/jurisdictions/us/soi.py +++ b/ledger/jurisdictions/us/soi.py @@ -249,6 +249,8 @@ def _fact_from_source_record( ), aggregation=Aggregation(method=spec.aggregation), source=source, + provenance_class=spec.provenance_class, + survey_instrument=spec.survey_instrument, filters=spec.filters, domain=spec.domain, source_record_id=record.source_record_id, @@ -301,6 +303,7 @@ def _legacy_source_record_spec( entity="tax_unit", entity_role="filing_unit", aggregation=aggregation, + provenance_class="administrative", filters=filters, constraints=_constraints_from_filters(filters), domain="all_individual_income_tax_returns", diff --git a/ledger/source_package.py b/ledger/source_package.py index 2851540..c401301 100644 --- a/ledger/source_package.py +++ b/ledger/source_package.py @@ -19,6 +19,7 @@ from ledger.core import ( ALLOWED_AGGREGATIONS, ALLOWED_ASSERTIONS, + ALLOWED_PROVENANCE_CLASSES, DEFAULT_ASSERTION, Aggregation, AggregateConstraint, @@ -719,6 +720,9 @@ class DeclarativeRecordSet: def to_record_set_spec(self, year: int) -> SourceRecordSetSpec: """Compile this YAML payload into the core record-set spec.""" + provenance_class, survey_instrument = _provenance_fields_from_mapping( + self.payload + ) rows = tuple( _row_from_mapping(row, year=year) for row in _required(self.payload, "rows", "record_set") @@ -767,6 +771,8 @@ def to_record_set_spec(self, year: int) -> SourceRecordSetSpec: ), rows=rows, measures=measures, + provenance_class=provenance_class, + survey_instrument=survey_instrument, shared_filters={ key: _render_value(value, year=year) for key, value in self.payload.get("shared_filters", {}).items() @@ -884,10 +890,7 @@ def load_source_package(source: str | Path) -> SourcePackage: artifact=_artifact_from_mapping( _required(payload, "artifact", str(path)), ), - record_sets=tuple( - DeclarativeRecordSet(record_set) - for record_set in _required(payload, "record_sets", str(path)) - ), + record_sets=_record_sets_from_mapping(payload, path), package_path=package_dir, ) @@ -1754,6 +1757,8 @@ def _fact_from_source_record( ), aggregation=Aggregation(method=spec.aggregation), source=source, + provenance_class=spec.provenance_class, + survey_instrument=spec.survey_instrument, filters=spec.filters, domain=spec.domain, source_record_id=record.source_record_id, @@ -1799,6 +1804,62 @@ def _assertion_from_mapping(payload: dict[str, Any]) -> str: return assertion +def _provenance_fields_from_mapping( + payload: dict[str, Any], +) -> tuple[str, str | None]: + if not isinstance(payload, dict): + raise TypeError("record_set must be a mapping.") + provenance_class = _required(payload, "provenance_class", "record_set") + if type(provenance_class) is not str: + raise TypeError( + "record_set provenance_class must be a string, " + f"got {type(provenance_class).__name__}." + ) + if provenance_class not in ALLOWED_PROVENANCE_CLASSES: + raise ValueError( + "record_set provenance_class must be one of " + f"{sorted(ALLOWED_PROVENANCE_CLASSES)}, got {provenance_class!r}." + ) + + has_survey_instrument = "survey_instrument" in payload + survey_instrument = payload.get("survey_instrument") + if provenance_class == "survey_aggregate": + if not has_survey_instrument: + raise KeyError( + "Missing required record_set field: survey_instrument" + ) + if type(survey_instrument) is not str or not survey_instrument.strip(): + raise TypeError( + "record_set survey_instrument must be a non-empty string for " + "survey_aggregate provenance." + ) + return provenance_class, survey_instrument + + if has_survey_instrument: + raise ValueError( + "record_set survey_instrument is forbidden unless provenance_class " + "is 'survey_aggregate'." + ) + return provenance_class, None + + +def _record_sets_from_mapping( + payload: dict[str, Any], + path: Path, +) -> tuple[DeclarativeRecordSet, ...]: + record_sets = _required(payload, "record_sets", str(path)) + if not isinstance(record_sets, list): + raise TypeError("source package record_sets must be a list.") + loaded = [] + for index, record_set in enumerate(record_sets): + try: + _provenance_fields_from_mapping(record_set) + except (KeyError, TypeError, ValueError) as exc: + raise type(exc)(f"record_sets[{index}]: {exc}") from exc + loaded.append(DeclarativeRecordSet(record_set)) + return tuple(loaded) + + def _period_coverage_from_mapping( payload: Any, *, @@ -2017,6 +2078,7 @@ def _scaffold_template( extraction_method: xlrd whole-workbook used-range cell parse record_sets: - record_set_id: {source_id}.ty{{year}}.TODO_table + provenance_class: TODO record_set_spec_id: {source_id}.TODO_table.v1 source_record_id_prefix: {source_id}.ty{{year}}.TODO_table sheet_name: TODO @@ -2046,4 +2108,4 @@ def _scaffold_template( concept: TODO_concept unit: count aggregation: sum -""" \ No newline at end of file +""" diff --git a/ledger/sources/specs.py b/ledger/sources/specs.py index ef44d1e..39ca9b8 100644 --- a/ledger/sources/specs.py +++ b/ledger/sources/specs.py @@ -86,6 +86,8 @@ class SourceRecordSpec: entity_role: str | None aggregation: str domain: str + provenance_class: str + survey_instrument: str | None = None filters: dict[str, Scalar] = field(default_factory=dict) constraints: tuple[AggregateConstraint, ...] = () value_scale: int | float = 1 @@ -193,6 +195,8 @@ class SourceRecordSetSpec: groupby_dimension: str rows: tuple[SourceRecordSetRow, ...] measures: tuple[SourceRecordSetMeasure, ...] + provenance_class: str + survey_instrument: str | None = None shared_filters: dict[str, Scalar] = field(default_factory=dict) shared_constraints: tuple[AggregateConstraint, ...] = () assertion: str = DEFAULT_ASSERTION @@ -290,6 +294,8 @@ def compile_source_record_set_specs( *measure.constraints, ), domain=spec.domain, + provenance_class=spec.provenance_class, + survey_instrument=spec.survey_instrument, value_scale=measure.value_scale * row.value_scale, assertion=spec.assertion, period_coverage=spec.period_coverage, diff --git a/ledger/store.py b/ledger/store.py index d0cf54f..8f9521a 100644 --- a/ledger/store.py +++ b/ledger/store.py @@ -64,6 +64,8 @@ def fact_from_mapping(payload: dict[str, Any]) -> AggregateFact: measure=Measure(**payload["measure"]), aggregation=Aggregation(**payload["aggregation"]), source=SourceProvenance(**payload["source"]), + provenance_class=payload["provenance_class"], + survey_instrument=payload.get("survey_instrument"), filters=dict(payload.get("filters", {})), domain=payload.get("domain", "all"), label=payload.get("label"), @@ -107,6 +109,8 @@ def fact_to_mapping(fact: AggregateFact) -> dict[str, Any]: } if fact.assertion == DEFAULT_ASSERTION: payload.pop("assertion", None) + if fact.survey_instrument is None: + payload.pop("survey_instrument", None) if fact.period_coverage is None: payload.pop("period_coverage", None) else: diff --git a/packages/bea/nipa_pension_contributions/source_package.yaml b/packages/bea/nipa_pension_contributions/source_package.yaml index e26791e..276d766 100644 --- a/packages/bea/nipa_pension_contributions/source_package.yaml +++ b/packages/bea/nipa_pension_contributions/source_package.yaml @@ -20,6 +20,7 @@ artifact: Period: "{year}" record_sets: - record_set_id: bea_nipa.cy{year}.defined_contribution_employer_contributions + provenance_class: model_output record_set_spec_id: bea_nipa.defined_contribution_employer_contributions.v1 source_record_id_prefix: bea_nipa.cy{year}.defined_contribution_employer_contributions sheet_name: NipaDataA @@ -62,6 +63,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy{year}.defined_contribution_actual_contributions + provenance_class: model_output record_set_spec_id: bea_nipa.defined_contribution_actual_contributions.v1 source_record_id_prefix: bea_nipa.cy{year}.defined_contribution_actual_contributions sheet_name: NipaDataA diff --git a/packages/bea/nipa_personal_income_components/source_package.yaml b/packages/bea/nipa_personal_income_components/source_package.yaml index 47d51dd..3b9a311 100644 --- a/packages/bea/nipa_personal_income_components/source_package.yaml +++ b/packages/bea/nipa_personal_income_components/source_package.yaml @@ -52,6 +52,7 @@ artifact: Period: "{year}" record_sets: - record_set_id: bea_nipa.cy{year}.proprietors_income + provenance_class: model_output record_set_spec_id: bea_nipa.proprietors_income.v1 source_record_id_prefix: bea_nipa.cy{year}.proprietors_income sheet_name: NipaDataA @@ -101,6 +102,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy{year}.rental_income_of_persons + provenance_class: model_output record_set_spec_id: bea_nipa.rental_income_of_persons.v1 source_record_id_prefix: bea_nipa.cy{year}.rental_income_of_persons sheet_name: NipaDataA @@ -150,6 +152,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy{year}.personal_interest_income + provenance_class: model_output record_set_spec_id: bea_nipa.personal_interest_income.v1 source_record_id_prefix: bea_nipa.cy{year}.personal_interest_income sheet_name: NipaDataA @@ -199,6 +202,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy{year}.personal_dividend_income + provenance_class: model_output record_set_spec_id: bea_nipa.personal_dividend_income.v1 source_record_id_prefix: bea_nipa.cy{year}.personal_dividend_income sheet_name: NipaDataA @@ -248,6 +252,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy{year}.supplements_to_wages_and_salaries + provenance_class: model_output record_set_spec_id: bea_nipa.supplements_to_wages_and_salaries.v1 source_record_id_prefix: bea_nipa.cy{year}.supplements_to_wages_and_salaries sheet_name: NipaDataA @@ -297,6 +302,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy{year}.employer_pension_and_insurance_contributions + provenance_class: model_output record_set_spec_id: bea_nipa.employer_pension_and_insurance_contributions.v1 source_record_id_prefix: bea_nipa.cy{year}.employer_pension_and_insurance_contributions sheet_name: NipaDataA @@ -346,6 +352,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy{year}.employer_government_social_insurance_contributions + provenance_class: model_output record_set_spec_id: bea_nipa.employer_government_social_insurance_contributions.v1 source_record_id_prefix: bea_nipa.cy{year}.employer_government_social_insurance_contributions sheet_name: NipaDataA @@ -395,6 +402,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy{year}.farm_proprietors_income + provenance_class: model_output record_set_spec_id: bea_nipa.farm_proprietors_income.v1 source_record_id_prefix: bea_nipa.cy{year}.farm_proprietors_income sheet_name: NipaDataA @@ -444,6 +452,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy{year}.nonfarm_proprietors_income + provenance_class: model_output record_set_spec_id: bea_nipa.nonfarm_proprietors_income.v1 source_record_id_prefix: bea_nipa.cy{year}.nonfarm_proprietors_income sheet_name: NipaDataA @@ -493,6 +502,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy{year}.government_social_benefits_to_persons + provenance_class: model_output record_set_spec_id: bea_nipa.government_social_benefits_to_persons.v1 source_record_id_prefix: bea_nipa.cy{year}.government_social_benefits_to_persons sheet_name: NipaDataA @@ -542,6 +552,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy{year}.social_security_benefits + provenance_class: model_output record_set_spec_id: bea_nipa.social_security_benefits.v1 source_record_id_prefix: bea_nipa.cy{year}.social_security_benefits sheet_name: NipaDataA @@ -591,6 +602,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy{year}.medicare_benefits + provenance_class: model_output record_set_spec_id: bea_nipa.medicare_benefits.v1 source_record_id_prefix: bea_nipa.cy{year}.medicare_benefits sheet_name: NipaDataA @@ -640,6 +652,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy{year}.medicaid_benefits + provenance_class: model_output record_set_spec_id: bea_nipa.medicaid_benefits.v1 source_record_id_prefix: bea_nipa.cy{year}.medicaid_benefits sheet_name: NipaDataA @@ -689,6 +702,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy{year}.unemployment_insurance_benefits + provenance_class: model_output record_set_spec_id: bea_nipa.unemployment_insurance_benefits.v1 source_record_id_prefix: bea_nipa.cy{year}.unemployment_insurance_benefits sheet_name: NipaDataA @@ -738,6 +752,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy{year}.veterans_benefits + provenance_class: model_output record_set_spec_id: bea_nipa.veterans_benefits.v1 source_record_id_prefix: bea_nipa.cy{year}.veterans_benefits sheet_name: NipaDataA @@ -787,6 +802,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy{year}.other_government_social_benefits + provenance_class: model_output record_set_spec_id: bea_nipa.other_government_social_benefits.v1 source_record_id_prefix: bea_nipa.cy{year}.other_government_social_benefits sheet_name: NipaDataA @@ -836,6 +852,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy{year}.business_current_transfer_receipts + provenance_class: model_output record_set_spec_id: bea_nipa.business_current_transfer_receipts.v1 source_record_id_prefix: bea_nipa.cy{year}.business_current_transfer_receipts sheet_name: NipaDataA @@ -885,6 +902,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy{year}.personal_current_transfer_receipts + provenance_class: model_output record_set_spec_id: bea_nipa.personal_current_transfer_receipts.v1 source_record_id_prefix: bea_nipa.cy{year}.personal_current_transfer_receipts sheet_name: NipaDataA diff --git a/packages/bea/nipa_personal_income_disposition/source_package.yaml b/packages/bea/nipa_personal_income_disposition/source_package.yaml index d26c369..754c311 100644 --- a/packages/bea/nipa_personal_income_disposition/source_package.yaml +++ b/packages/bea/nipa_personal_income_disposition/source_package.yaml @@ -28,6 +28,7 @@ artifact: Period: '{year}' record_sets: - record_set_id: bea_nipa.cy{year}.personal_income + provenance_class: model_output record_set_spec_id: bea_nipa.personal_income.v1 source_record_id_prefix: bea_nipa.cy{year}.personal_income sheet_name: NipaDataA @@ -77,6 +78,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy{year}.personal_current_taxes + provenance_class: model_output record_set_spec_id: bea_nipa.personal_current_taxes.v1 source_record_id_prefix: bea_nipa.cy{year}.personal_current_taxes sheet_name: NipaDataA @@ -126,6 +128,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy{year}.disposable_personal_income + provenance_class: model_output record_set_spec_id: bea_nipa.disposable_personal_income.v1 source_record_id_prefix: bea_nipa.cy{year}.disposable_personal_income sheet_name: NipaDataA @@ -175,6 +178,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy{year}.personal_outlays + provenance_class: model_output record_set_spec_id: bea_nipa.personal_outlays.v1 source_record_id_prefix: bea_nipa.cy{year}.personal_outlays sheet_name: NipaDataA @@ -224,6 +228,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy{year}.personal_saving + provenance_class: model_output record_set_spec_id: bea_nipa.personal_saving.v1 source_record_id_prefix: bea_nipa.cy{year}.personal_saving sheet_name: NipaDataA @@ -273,6 +278,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy{year}.personal_saving_rate + provenance_class: model_output record_set_spec_id: bea_nipa.personal_saving_rate.v1 source_record_id_prefix: bea_nipa.cy{year}.personal_saving_rate sheet_name: NipaDataA diff --git a/packages/bea/nipa_total_wages_salaries/source_package.yaml b/packages/bea/nipa_total_wages_salaries/source_package.yaml index 26b8740..7684b15 100644 --- a/packages/bea/nipa_total_wages_salaries/source_package.yaml +++ b/packages/bea/nipa_total_wages_salaries/source_package.yaml @@ -22,6 +22,7 @@ artifact: Period: 2024 record_sets: - record_set_id: bea_nipa.cy2018.total_wages_salaries + provenance_class: model_output record_set_spec_id: bea_nipa.total_wages_salaries.v1 source_record_id_prefix: bea_nipa.cy2018.total_wages_salaries sheet_name: NipaDataA @@ -71,6 +72,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy2023.total_wages_salaries + provenance_class: model_output record_set_spec_id: bea_nipa.total_wages_salaries.v1 source_record_id_prefix: bea_nipa.cy2023.total_wages_salaries sheet_name: NipaDataA @@ -120,6 +122,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: bea_nipa.cy2024.total_wages_salaries + provenance_class: model_output record_set_spec_id: bea_nipa.total_wages_salaries.v1 source_record_id_prefix: bea_nipa.cy2024.total_wages_salaries sheet_name: NipaDataA diff --git a/packages/bea/regional_personal_income_state/source_package.yaml b/packages/bea/regional_personal_income_state/source_package.yaml index da4f147..c8b1788 100644 --- a/packages/bea/regional_personal_income_state/source_package.yaml +++ b/packages/bea/regional_personal_income_state/source_package.yaml @@ -1265,6 +1265,7 @@ artifact: LineCode: 42 record_sets: - record_set_id: bea_regional.cy{year}.state_personal_income + provenance_class: model_output record_set_spec_id: bea_regional.state_personal_income.v1 source_record_id_prefix: bea_regional.cy{year}.state_personal_income sheet_name: SAINC5N__ALL_AREAS_1998_2025.csv @@ -3173,6 +3174,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: bea_regional.cy{year}.state_dividends_interest_rent + provenance_class: model_output record_set_spec_id: bea_regional.state_dividends_interest_rent.v1 source_record_id_prefix: bea_regional.cy{year}.state_dividends_interest_rent sheet_name: SAINC5N__ALL_AREAS_1998_2025.csv @@ -5077,6 +5079,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: bea_regional.cy{year}.state_personal_current_transfer_receipts + provenance_class: model_output record_set_spec_id: bea_regional.state_personal_current_transfer_receipts.v1 source_record_id_prefix: bea_regional.cy{year}.state_personal_current_transfer_receipts sheet_name: SAINC5N__ALL_AREAS_1998_2025.csv @@ -6981,6 +6984,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: bea_regional.cy{year}.state_wages_salaries + provenance_class: model_output record_set_spec_id: bea_regional.state_wages_salaries.v1 source_record_id_prefix: bea_regional.cy{year}.state_wages_salaries sheet_name: SAINC5N__ALL_AREAS_1998_2025.csv @@ -8885,6 +8889,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: bea_regional.cy{year}.state_supplements_to_wages_salaries + provenance_class: model_output record_set_spec_id: bea_regional.state_supplements_to_wages_salaries.v1 source_record_id_prefix: bea_regional.cy{year}.state_supplements_to_wages_salaries sheet_name: SAINC5N__ALL_AREAS_1998_2025.csv @@ -10789,6 +10794,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: bea_regional.cy{year}.state_proprietors_income + provenance_class: model_output record_set_spec_id: bea_regional.state_proprietors_income.v1 source_record_id_prefix: bea_regional.cy{year}.state_proprietors_income sheet_name: SAINC5N__ALL_AREAS_1998_2025.csv @@ -12693,6 +12699,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: bea_regional.cy{year}.state_contributions_for_government_social_insurance + provenance_class: model_output record_set_spec_id: bea_regional.state_contributions_for_government_social_insurance.v1 source_record_id_prefix: bea_regional.cy{year}.state_contributions_for_government_social_insurance sheet_name: SAINC5N__ALL_AREAS_1998_2025.csv @@ -14597,6 +14604,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: bea_regional.cy{year}.state_residence_adjustment + provenance_class: model_output record_set_spec_id: bea_regional.state_residence_adjustment.v1 source_record_id_prefix: bea_regional.cy{year}.state_residence_adjustment sheet_name: SAINC5N__ALL_AREAS_1998_2025.csv diff --git a/packages/bfp/economic_outlook_2026_06/source_package.yaml b/packages/bfp/economic_outlook_2026_06/source_package.yaml index b9c53d1..6f319a4 100644 --- a/packages/bfp/economic_outlook_2026_06/source_package.yaml +++ b/packages/bfp/economic_outlook_2026_06/source_package.yaml @@ -15,6 +15,7 @@ artifact: sheet_name: bfp_economic_outlook_2026_06 record_sets: - record_set_id: bfp.economic_outlook.cy2026.headline_projections.country + provenance_class: model_output record_set_spec_id: bfp.economic_outlook.headline_projections.cy2026.v1 assertion: source_projection source_record_id_prefix: bfp.economic_outlook.cy2026.headline_projections @@ -96,6 +97,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: bfp.economic_outlook.cy2031.headline_projections.country + provenance_class: model_output record_set_spec_id: bfp.economic_outlook.headline_projections.cy2031.v1 assertion: source_projection source_record_id_prefix: bfp.economic_outlook.cy2031.headline_projections diff --git a/packages/cbo/individual_income_tax_receipts_2026_02/source_package.yaml b/packages/cbo/individual_income_tax_receipts_2026_02/source_package.yaml index 88cae6f..8e3a286 100644 --- a/packages/cbo/individual_income_tax_receipts_2026_02/source_package.yaml +++ b/packages/cbo/individual_income_tax_receipts_2026_02/source_package.yaml @@ -21,6 +21,7 @@ artifact: - source_concept_id: individual_income_taxes record_sets: - record_set_id: cbo.fy{year}.revenues + provenance_class: administrative record_set_spec_id: cbo.individual_income_tax_receipts.v1 source_record_id_prefix: cbo.fy{year}.revenues sheet_name: income_tax_receipts diff --git a/packages/cbo/revenue_projections_income_by_source_2026_02/source_package.yaml b/packages/cbo/revenue_projections_income_by_source_2026_02/source_package.yaml index fff4250..a6342f1 100644 --- a/packages/cbo/revenue_projections_income_by_source_2026_02/source_package.yaml +++ b/packages/cbo/revenue_projections_income_by_source_2026_02/source_package.yaml @@ -25,6 +25,7 @@ artifact: - source_concept_id: net_business_income record_sets: - record_set_id: cbo.revenue_projection.ty{year}.income_by_source.adjusted_gross_income + provenance_class: model_output record_set_spec_id: cbo.revenue_projection.income_by_source.adjusted_gross_income.v1 assertion: source_projection source_record_id_prefix: cbo.revenue_projection.ty{year}.income_by_source @@ -87,6 +88,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: cbo.revenue_projection.ty{year}.income_by_source.wages_and_salaries + provenance_class: model_output record_set_spec_id: cbo.revenue_projection.income_by_source.wages_and_salaries.v1 assertion: source_projection source_record_id_prefix: cbo.revenue_projection.ty{year}.income_by_source @@ -134,6 +136,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: cbo.revenue_projection.ty{year}.income_by_source.taxable_interest_ordinary_dividends + provenance_class: model_output record_set_spec_id: cbo.revenue_projection.income_by_source.taxable_interest_ordinary_dividends.v1 assertion: source_projection source_record_id_prefix: cbo.revenue_projection.ty{year}.income_by_source @@ -184,6 +187,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: cbo.revenue_projection.ty{year}.income_by_source.qualified_dividend_income + provenance_class: model_output record_set_spec_id: cbo.revenue_projection.income_by_source.qualified_dividend_income.v1 assertion: source_projection source_record_id_prefix: cbo.revenue_projection.ty{year}.income_by_source @@ -231,6 +235,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: cbo.revenue_projection.ty{year}.income_by_source.net_capital_gain + provenance_class: model_output record_set_spec_id: cbo.revenue_projection.income_by_source.net_capital_gain.v1 assertion: source_projection source_record_id_prefix: cbo.revenue_projection.ty{year}.income_by_source @@ -278,6 +283,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: cbo.revenue_projection.ty{year}.income_by_source.net_business_income + provenance_class: model_output record_set_spec_id: cbo.revenue_projection.income_by_source.net_business_income.v1 assertion: source_projection source_record_id_prefix: cbo.revenue_projection.ty{year}.income_by_source diff --git a/packages/census/acs_s0101_district_2024/source_package.yaml b/packages/census/acs_s0101_district_2024/source_package.yaml index bcc8c0e..31e3901 100644 --- a/packages/census/acs_s0101_district_2024/source_package.yaml +++ b/packages/census/acs_s0101_district_2024/source_package.yaml @@ -15,6 +15,8 @@ artifact: sheet_name: api_response record_sets: - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0101 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0101 sheet_name: api_response @@ -471,6 +473,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0102 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0102 sheet_name: api_response @@ -927,6 +931,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0103 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0103 sheet_name: api_response @@ -1383,6 +1389,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0104 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0104 sheet_name: api_response @@ -1839,6 +1847,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0105 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0105 sheet_name: api_response @@ -2295,6 +2305,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0106 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0106 sheet_name: api_response @@ -2751,6 +2763,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0107 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0107 sheet_name: api_response @@ -3207,6 +3221,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0200 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0200 sheet_name: api_response @@ -3663,6 +3679,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0401 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0401 sheet_name: api_response @@ -4119,6 +4137,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0402 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0402 sheet_name: api_response @@ -4575,6 +4595,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0403 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0403 sheet_name: api_response @@ -5031,6 +5053,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0404 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0404 sheet_name: api_response @@ -5487,6 +5511,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0405 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0405 sheet_name: api_response @@ -5943,6 +5969,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0406 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0406 sheet_name: api_response @@ -6399,6 +6427,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0407 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0407 sheet_name: api_response @@ -6855,6 +6885,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0408 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0408 sheet_name: api_response @@ -7311,6 +7343,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0409 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0409 sheet_name: api_response @@ -7767,6 +7801,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0501 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0501 sheet_name: api_response @@ -8223,6 +8259,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0502 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0502 sheet_name: api_response @@ -8679,6 +8717,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0503 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0503 sheet_name: api_response @@ -9135,6 +9175,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0504 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0504 sheet_name: api_response @@ -9591,6 +9633,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0601 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0601 sheet_name: api_response @@ -10047,6 +10091,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0602 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0602 sheet_name: api_response @@ -10503,6 +10549,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0603 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0603 sheet_name: api_response @@ -10959,6 +11007,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0604 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0604 sheet_name: api_response @@ -11415,6 +11465,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0605 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0605 sheet_name: api_response @@ -11871,6 +11923,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0606 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0606 sheet_name: api_response @@ -12327,6 +12381,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0607 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0607 sheet_name: api_response @@ -12783,6 +12839,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0608 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0608 sheet_name: api_response @@ -13239,6 +13297,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0609 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0609 sheet_name: api_response @@ -13695,6 +13755,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0610 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0610 sheet_name: api_response @@ -14151,6 +14213,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0611 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0611 sheet_name: api_response @@ -14607,6 +14671,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0612 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0612 sheet_name: api_response @@ -15063,6 +15129,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0613 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0613 sheet_name: api_response @@ -15519,6 +15587,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0614 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0614 sheet_name: api_response @@ -15975,6 +16045,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0615 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0615 sheet_name: api_response @@ -16431,6 +16503,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0616 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0616 sheet_name: api_response @@ -16887,6 +16961,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0617 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0617 sheet_name: api_response @@ -17343,6 +17419,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0618 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0618 sheet_name: api_response @@ -17799,6 +17877,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0619 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0619 sheet_name: api_response @@ -18255,6 +18335,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0620 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0620 sheet_name: api_response @@ -18711,6 +18793,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0621 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0621 sheet_name: api_response @@ -19167,6 +19251,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0622 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0622 sheet_name: api_response @@ -19623,6 +19709,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0623 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0623 sheet_name: api_response @@ -20079,6 +20167,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0624 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0624 sheet_name: api_response @@ -20535,6 +20625,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0625 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0625 sheet_name: api_response @@ -20991,6 +21083,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0626 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0626 sheet_name: api_response @@ -21447,6 +21541,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0627 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0627 sheet_name: api_response @@ -21903,6 +21999,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0628 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0628 sheet_name: api_response @@ -22359,6 +22457,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0629 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0629 sheet_name: api_response @@ -22815,6 +22915,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0630 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0630 sheet_name: api_response @@ -23271,6 +23373,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0631 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0631 sheet_name: api_response @@ -23727,6 +23831,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0632 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0632 sheet_name: api_response @@ -24183,6 +24289,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0633 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0633 sheet_name: api_response @@ -24639,6 +24747,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0634 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0634 sheet_name: api_response @@ -25095,6 +25205,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0635 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0635 sheet_name: api_response @@ -25551,6 +25663,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0636 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0636 sheet_name: api_response @@ -26007,6 +26121,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0637 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0637 sheet_name: api_response @@ -26463,6 +26579,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0638 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0638 sheet_name: api_response @@ -26919,6 +27037,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0639 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0639 sheet_name: api_response @@ -27375,6 +27495,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0640 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0640 sheet_name: api_response @@ -27831,6 +27953,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0641 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0641 sheet_name: api_response @@ -28287,6 +28411,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0642 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0642 sheet_name: api_response @@ -28743,6 +28869,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0643 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0643 sheet_name: api_response @@ -29199,6 +29327,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0644 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0644 sheet_name: api_response @@ -29655,6 +29785,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0645 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0645 sheet_name: api_response @@ -30111,6 +30243,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0646 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0646 sheet_name: api_response @@ -30567,6 +30701,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0647 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0647 sheet_name: api_response @@ -31023,6 +31159,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0648 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0648 sheet_name: api_response @@ -31479,6 +31617,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0649 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0649 sheet_name: api_response @@ -31935,6 +32075,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0650 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0650 sheet_name: api_response @@ -32391,6 +32533,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0651 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0651 sheet_name: api_response @@ -32847,6 +32991,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0652 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0652 sheet_name: api_response @@ -33303,6 +33449,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0801 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0801 sheet_name: api_response @@ -33759,6 +33907,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0802 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0802 sheet_name: api_response @@ -34215,6 +34365,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0803 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0803 sheet_name: api_response @@ -34671,6 +34823,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0804 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0804 sheet_name: api_response @@ -35127,6 +35281,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0805 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0805 sheet_name: api_response @@ -35583,6 +35739,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0806 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0806 sheet_name: api_response @@ -36039,6 +36197,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0807 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0807 sheet_name: api_response @@ -36495,6 +36655,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0808 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0808 sheet_name: api_response @@ -36951,6 +37113,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0901 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0901 sheet_name: api_response @@ -37407,6 +37571,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0902 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0902 sheet_name: api_response @@ -37863,6 +38029,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0903 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0903 sheet_name: api_response @@ -38319,6 +38487,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0904 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0904 sheet_name: api_response @@ -38775,6 +38945,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.0905 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.0905 sheet_name: api_response @@ -39231,6 +39403,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1000 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1000 sheet_name: api_response @@ -39687,6 +39861,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1198 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1198 sheet_name: api_response @@ -40143,6 +40319,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1201 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1201 sheet_name: api_response @@ -40599,6 +40777,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1202 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1202 sheet_name: api_response @@ -41055,6 +41235,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1203 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1203 sheet_name: api_response @@ -41511,6 +41693,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1204 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1204 sheet_name: api_response @@ -41967,6 +42151,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1205 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1205 sheet_name: api_response @@ -42423,6 +42609,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1206 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1206 sheet_name: api_response @@ -42879,6 +43067,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1207 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1207 sheet_name: api_response @@ -43335,6 +43525,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1208 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1208 sheet_name: api_response @@ -43791,6 +43983,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1209 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1209 sheet_name: api_response @@ -44247,6 +44441,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1210 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1210 sheet_name: api_response @@ -44703,6 +44899,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1211 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1211 sheet_name: api_response @@ -45159,6 +45357,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1212 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1212 sheet_name: api_response @@ -45615,6 +45815,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1213 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1213 sheet_name: api_response @@ -46071,6 +46273,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1214 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1214 sheet_name: api_response @@ -46527,6 +46731,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1215 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1215 sheet_name: api_response @@ -46983,6 +47189,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1216 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1216 sheet_name: api_response @@ -47439,6 +47647,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1217 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1217 sheet_name: api_response @@ -47895,6 +48105,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1218 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1218 sheet_name: api_response @@ -48351,6 +48563,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1219 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1219 sheet_name: api_response @@ -48807,6 +49021,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1220 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1220 sheet_name: api_response @@ -49263,6 +49479,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1221 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1221 sheet_name: api_response @@ -49719,6 +49937,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1222 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1222 sheet_name: api_response @@ -50175,6 +50395,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1223 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1223 sheet_name: api_response @@ -50631,6 +50853,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1224 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1224 sheet_name: api_response @@ -51087,6 +51311,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1225 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1225 sheet_name: api_response @@ -51543,6 +51769,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1226 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1226 sheet_name: api_response @@ -51999,6 +52227,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1227 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1227 sheet_name: api_response @@ -52455,6 +52685,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1228 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1228 sheet_name: api_response @@ -52911,6 +53143,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1301 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1301 sheet_name: api_response @@ -53367,6 +53601,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1302 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1302 sheet_name: api_response @@ -53823,6 +54059,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1303 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1303 sheet_name: api_response @@ -54279,6 +54517,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1304 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1304 sheet_name: api_response @@ -54735,6 +54975,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1305 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1305 sheet_name: api_response @@ -55191,6 +55433,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1306 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1306 sheet_name: api_response @@ -55647,6 +55891,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1307 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1307 sheet_name: api_response @@ -56103,6 +56349,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1308 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1308 sheet_name: api_response @@ -56559,6 +56807,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1309 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1309 sheet_name: api_response @@ -57015,6 +57265,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1310 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1310 sheet_name: api_response @@ -57471,6 +57723,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1311 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1311 sheet_name: api_response @@ -57927,6 +58181,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1312 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1312 sheet_name: api_response @@ -58383,6 +58639,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1313 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1313 sheet_name: api_response @@ -58839,6 +59097,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1314 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1314 sheet_name: api_response @@ -59295,6 +59555,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1501 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1501 sheet_name: api_response @@ -59751,6 +60013,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1502 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1502 sheet_name: api_response @@ -60207,6 +60471,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1601 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1601 sheet_name: api_response @@ -60663,6 +60929,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1602 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1602 sheet_name: api_response @@ -61119,6 +61387,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1701 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1701 sheet_name: api_response @@ -61575,6 +61845,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1702 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1702 sheet_name: api_response @@ -62031,6 +62303,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1703 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1703 sheet_name: api_response @@ -62487,6 +62761,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1704 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1704 sheet_name: api_response @@ -62943,6 +63219,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1705 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1705 sheet_name: api_response @@ -63399,6 +63677,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1706 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1706 sheet_name: api_response @@ -63855,6 +64135,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1707 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1707 sheet_name: api_response @@ -64311,6 +64593,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1708 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1708 sheet_name: api_response @@ -64767,6 +65051,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1709 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1709 sheet_name: api_response @@ -65223,6 +65509,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1710 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1710 sheet_name: api_response @@ -65679,6 +65967,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1711 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1711 sheet_name: api_response @@ -66135,6 +66425,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1712 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1712 sheet_name: api_response @@ -66591,6 +66883,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1713 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1713 sheet_name: api_response @@ -67047,6 +67341,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1714 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1714 sheet_name: api_response @@ -67503,6 +67799,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1715 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1715 sheet_name: api_response @@ -67959,6 +68257,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1716 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1716 sheet_name: api_response @@ -68415,6 +68715,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1717 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1717 sheet_name: api_response @@ -68871,6 +69173,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1801 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1801 sheet_name: api_response @@ -69327,6 +69631,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1802 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1802 sheet_name: api_response @@ -69783,6 +70089,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1803 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1803 sheet_name: api_response @@ -70239,6 +70547,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1804 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1804 sheet_name: api_response @@ -70695,6 +71005,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1805 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1805 sheet_name: api_response @@ -71151,6 +71463,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1806 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1806 sheet_name: api_response @@ -71607,6 +71921,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1807 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1807 sheet_name: api_response @@ -72063,6 +72379,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1808 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1808 sheet_name: api_response @@ -72519,6 +72837,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1809 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1809 sheet_name: api_response @@ -72975,6 +73295,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1901 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1901 sheet_name: api_response @@ -73431,6 +73753,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1902 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1902 sheet_name: api_response @@ -73887,6 +74211,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1903 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1903 sheet_name: api_response @@ -74343,6 +74669,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.1904 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.1904 sheet_name: api_response @@ -74799,6 +75127,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2001 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2001 sheet_name: api_response @@ -75255,6 +75585,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2002 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2002 sheet_name: api_response @@ -75711,6 +76043,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2003 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2003 sheet_name: api_response @@ -76167,6 +76501,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2004 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2004 sheet_name: api_response @@ -76623,6 +76959,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2101 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2101 sheet_name: api_response @@ -77079,6 +77417,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2102 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2102 sheet_name: api_response @@ -77535,6 +77875,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2103 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2103 sheet_name: api_response @@ -77991,6 +78333,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2104 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2104 sheet_name: api_response @@ -78447,6 +78791,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2105 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2105 sheet_name: api_response @@ -78903,6 +79249,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2106 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2106 sheet_name: api_response @@ -79359,6 +79707,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2201 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2201 sheet_name: api_response @@ -79815,6 +80165,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2202 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2202 sheet_name: api_response @@ -80271,6 +80623,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2203 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2203 sheet_name: api_response @@ -80727,6 +81081,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2204 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2204 sheet_name: api_response @@ -81183,6 +81539,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2205 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2205 sheet_name: api_response @@ -81639,6 +81997,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2206 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2206 sheet_name: api_response @@ -82095,6 +82455,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2301 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2301 sheet_name: api_response @@ -82551,6 +82913,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2302 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2302 sheet_name: api_response @@ -83007,6 +83371,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2401 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2401 sheet_name: api_response @@ -83463,6 +83829,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2402 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2402 sheet_name: api_response @@ -83919,6 +84287,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2403 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2403 sheet_name: api_response @@ -84375,6 +84745,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2404 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2404 sheet_name: api_response @@ -84831,6 +85203,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2405 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2405 sheet_name: api_response @@ -85287,6 +85661,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2406 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2406 sheet_name: api_response @@ -85743,6 +86119,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2407 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2407 sheet_name: api_response @@ -86199,6 +86577,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2408 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2408 sheet_name: api_response @@ -86655,6 +87035,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2501 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2501 sheet_name: api_response @@ -87111,6 +87493,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2502 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2502 sheet_name: api_response @@ -87567,6 +87951,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2503 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2503 sheet_name: api_response @@ -88023,6 +88409,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2504 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2504 sheet_name: api_response @@ -88479,6 +88867,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2505 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2505 sheet_name: api_response @@ -88935,6 +89325,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2506 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2506 sheet_name: api_response @@ -89391,6 +89783,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2507 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2507 sheet_name: api_response @@ -89847,6 +90241,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2508 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2508 sheet_name: api_response @@ -90303,6 +90699,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2509 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2509 sheet_name: api_response @@ -90759,6 +91157,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2601 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2601 sheet_name: api_response @@ -91215,6 +91615,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2602 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2602 sheet_name: api_response @@ -91671,6 +92073,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2603 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2603 sheet_name: api_response @@ -92127,6 +92531,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2604 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2604 sheet_name: api_response @@ -92583,6 +92989,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2605 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2605 sheet_name: api_response @@ -93039,6 +93447,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2606 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2606 sheet_name: api_response @@ -93495,6 +93905,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2607 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2607 sheet_name: api_response @@ -93951,6 +94363,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2608 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2608 sheet_name: api_response @@ -94407,6 +94821,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2609 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2609 sheet_name: api_response @@ -94863,6 +95279,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2610 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2610 sheet_name: api_response @@ -95319,6 +95737,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2611 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2611 sheet_name: api_response @@ -95775,6 +96195,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2612 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2612 sheet_name: api_response @@ -96231,6 +96653,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2613 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2613 sheet_name: api_response @@ -96687,6 +97111,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2701 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2701 sheet_name: api_response @@ -97143,6 +97569,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2702 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2702 sheet_name: api_response @@ -97599,6 +98027,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2703 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2703 sheet_name: api_response @@ -98055,6 +98485,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2704 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2704 sheet_name: api_response @@ -98511,6 +98943,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2705 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2705 sheet_name: api_response @@ -98967,6 +99401,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2706 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2706 sheet_name: api_response @@ -99423,6 +99859,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2707 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2707 sheet_name: api_response @@ -99879,6 +100317,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2708 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2708 sheet_name: api_response @@ -100335,6 +100775,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2801 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2801 sheet_name: api_response @@ -100791,6 +101233,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2802 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2802 sheet_name: api_response @@ -101247,6 +101691,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2803 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2803 sheet_name: api_response @@ -101703,6 +102149,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2804 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2804 sheet_name: api_response @@ -102159,6 +102607,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2901 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2901 sheet_name: api_response @@ -102615,6 +103065,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2902 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2902 sheet_name: api_response @@ -103071,6 +103523,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2903 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2903 sheet_name: api_response @@ -103527,6 +103981,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2904 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2904 sheet_name: api_response @@ -103983,6 +104439,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2905 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2905 sheet_name: api_response @@ -104439,6 +104897,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2906 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2906 sheet_name: api_response @@ -104895,6 +105355,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2907 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2907 sheet_name: api_response @@ -105351,6 +105813,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.2908 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.2908 sheet_name: api_response @@ -105807,6 +106271,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3001 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3001 sheet_name: api_response @@ -106263,6 +106729,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3002 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3002 sheet_name: api_response @@ -106719,6 +107187,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3101 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3101 sheet_name: api_response @@ -107175,6 +107645,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3102 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3102 sheet_name: api_response @@ -107631,6 +108103,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3103 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3103 sheet_name: api_response @@ -108087,6 +108561,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3201 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3201 sheet_name: api_response @@ -108543,6 +109019,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3202 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3202 sheet_name: api_response @@ -108999,6 +109477,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3203 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3203 sheet_name: api_response @@ -109455,6 +109935,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3204 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3204 sheet_name: api_response @@ -109911,6 +110393,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3301 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3301 sheet_name: api_response @@ -110367,6 +110851,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3302 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3302 sheet_name: api_response @@ -110823,6 +111309,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3401 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3401 sheet_name: api_response @@ -111279,6 +111767,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3402 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3402 sheet_name: api_response @@ -111735,6 +112225,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3403 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3403 sheet_name: api_response @@ -112191,6 +112683,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3404 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3404 sheet_name: api_response @@ -112647,6 +113141,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3405 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3405 sheet_name: api_response @@ -113103,6 +113599,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3406 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3406 sheet_name: api_response @@ -113559,6 +114057,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3407 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3407 sheet_name: api_response @@ -114015,6 +114515,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3408 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3408 sheet_name: api_response @@ -114471,6 +114973,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3409 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3409 sheet_name: api_response @@ -114927,6 +115431,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3410 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3410 sheet_name: api_response @@ -115383,6 +115889,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3411 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3411 sheet_name: api_response @@ -115839,6 +116347,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3412 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3412 sheet_name: api_response @@ -116295,6 +116805,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3501 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3501 sheet_name: api_response @@ -116751,6 +117263,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3502 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3502 sheet_name: api_response @@ -117207,6 +117721,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3503 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3503 sheet_name: api_response @@ -117663,6 +118179,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3601 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3601 sheet_name: api_response @@ -118119,6 +118637,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3602 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3602 sheet_name: api_response @@ -118575,6 +119095,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3603 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3603 sheet_name: api_response @@ -119031,6 +119553,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3604 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3604 sheet_name: api_response @@ -119487,6 +120011,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3605 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3605 sheet_name: api_response @@ -119943,6 +120469,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3606 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3606 sheet_name: api_response @@ -120399,6 +120927,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3607 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3607 sheet_name: api_response @@ -120855,6 +121385,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3608 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3608 sheet_name: api_response @@ -121311,6 +121843,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3609 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3609 sheet_name: api_response @@ -121767,6 +122301,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3610 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3610 sheet_name: api_response @@ -122223,6 +122759,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3611 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3611 sheet_name: api_response @@ -122679,6 +123217,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3612 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3612 sheet_name: api_response @@ -123135,6 +123675,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3613 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3613 sheet_name: api_response @@ -123591,6 +124133,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3614 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3614 sheet_name: api_response @@ -124047,6 +124591,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3615 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3615 sheet_name: api_response @@ -124503,6 +125049,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3616 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3616 sheet_name: api_response @@ -124959,6 +125507,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3617 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3617 sheet_name: api_response @@ -125415,6 +125965,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3618 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3618 sheet_name: api_response @@ -125871,6 +126423,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3619 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3619 sheet_name: api_response @@ -126327,6 +126881,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3620 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3620 sheet_name: api_response @@ -126783,6 +127339,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3621 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3621 sheet_name: api_response @@ -127239,6 +127797,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3622 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3622 sheet_name: api_response @@ -127695,6 +128255,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3623 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3623 sheet_name: api_response @@ -128151,6 +128713,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3624 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3624 sheet_name: api_response @@ -128607,6 +129171,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3625 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3625 sheet_name: api_response @@ -129063,6 +129629,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3626 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3626 sheet_name: api_response @@ -129519,6 +130087,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3701 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3701 sheet_name: api_response @@ -129975,6 +130545,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3702 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3702 sheet_name: api_response @@ -130431,6 +131003,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3703 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3703 sheet_name: api_response @@ -130887,6 +131461,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3704 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3704 sheet_name: api_response @@ -131343,6 +131919,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3705 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3705 sheet_name: api_response @@ -131799,6 +132377,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3706 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3706 sheet_name: api_response @@ -132255,6 +132835,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3707 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3707 sheet_name: api_response @@ -132711,6 +133293,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3708 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3708 sheet_name: api_response @@ -133167,6 +133751,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3709 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3709 sheet_name: api_response @@ -133623,6 +134209,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3710 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3710 sheet_name: api_response @@ -134079,6 +134667,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3711 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3711 sheet_name: api_response @@ -134535,6 +135125,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3712 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3712 sheet_name: api_response @@ -134991,6 +135583,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3713 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3713 sheet_name: api_response @@ -135447,6 +136041,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3714 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3714 sheet_name: api_response @@ -135903,6 +136499,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3800 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3800 sheet_name: api_response @@ -136359,6 +136957,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3901 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3901 sheet_name: api_response @@ -136815,6 +137415,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3902 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3902 sheet_name: api_response @@ -137271,6 +137873,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3903 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3903 sheet_name: api_response @@ -137727,6 +138331,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3904 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3904 sheet_name: api_response @@ -138183,6 +138789,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3905 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3905 sheet_name: api_response @@ -138639,6 +139247,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3906 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3906 sheet_name: api_response @@ -139095,6 +139705,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3907 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3907 sheet_name: api_response @@ -139551,6 +140163,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3908 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3908 sheet_name: api_response @@ -140007,6 +140621,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3909 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3909 sheet_name: api_response @@ -140463,6 +141079,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3910 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3910 sheet_name: api_response @@ -140919,6 +141537,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3911 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3911 sheet_name: api_response @@ -141375,6 +141995,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3912 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3912 sheet_name: api_response @@ -141831,6 +142453,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3913 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3913 sheet_name: api_response @@ -142287,6 +142911,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3914 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3914 sheet_name: api_response @@ -142743,6 +143369,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.3915 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.3915 sheet_name: api_response @@ -143199,6 +143827,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4001 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4001 sheet_name: api_response @@ -143655,6 +144285,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4002 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4002 sheet_name: api_response @@ -144111,6 +144743,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4003 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4003 sheet_name: api_response @@ -144567,6 +145201,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4004 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4004 sheet_name: api_response @@ -145023,6 +145659,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4005 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4005 sheet_name: api_response @@ -145479,6 +146117,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4101 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4101 sheet_name: api_response @@ -145935,6 +146575,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4102 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4102 sheet_name: api_response @@ -146391,6 +147033,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4103 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4103 sheet_name: api_response @@ -146847,6 +147491,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4104 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4104 sheet_name: api_response @@ -147303,6 +147949,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4105 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4105 sheet_name: api_response @@ -147759,6 +148407,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4106 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4106 sheet_name: api_response @@ -148215,6 +148865,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4201 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4201 sheet_name: api_response @@ -148671,6 +149323,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4202 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4202 sheet_name: api_response @@ -149127,6 +149781,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4203 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4203 sheet_name: api_response @@ -149583,6 +150239,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4204 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4204 sheet_name: api_response @@ -150039,6 +150697,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4205 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4205 sheet_name: api_response @@ -150495,6 +151155,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4206 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4206 sheet_name: api_response @@ -150951,6 +151613,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4207 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4207 sheet_name: api_response @@ -151407,6 +152071,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4208 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4208 sheet_name: api_response @@ -151863,6 +152529,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4209 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4209 sheet_name: api_response @@ -152319,6 +152987,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4210 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4210 sheet_name: api_response @@ -152775,6 +153445,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4211 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4211 sheet_name: api_response @@ -153231,6 +153903,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4212 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4212 sheet_name: api_response @@ -153687,6 +154361,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4213 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4213 sheet_name: api_response @@ -154143,6 +154819,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4214 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4214 sheet_name: api_response @@ -154599,6 +155277,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4215 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4215 sheet_name: api_response @@ -155055,6 +155735,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4216 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4216 sheet_name: api_response @@ -155511,6 +156193,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4217 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4217 sheet_name: api_response @@ -155967,6 +156651,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4401 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4401 sheet_name: api_response @@ -156423,6 +157109,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4402 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4402 sheet_name: api_response @@ -156879,6 +157567,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4501 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4501 sheet_name: api_response @@ -157335,6 +158025,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4502 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4502 sheet_name: api_response @@ -157791,6 +158483,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4503 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4503 sheet_name: api_response @@ -158247,6 +158941,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4504 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4504 sheet_name: api_response @@ -158703,6 +159399,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4505 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4505 sheet_name: api_response @@ -159159,6 +159857,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4506 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4506 sheet_name: api_response @@ -159615,6 +160315,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4507 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4507 sheet_name: api_response @@ -160071,6 +160773,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4600 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4600 sheet_name: api_response @@ -160527,6 +161231,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4701 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4701 sheet_name: api_response @@ -160983,6 +161689,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4702 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4702 sheet_name: api_response @@ -161439,6 +162147,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4703 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4703 sheet_name: api_response @@ -161895,6 +162605,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4704 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4704 sheet_name: api_response @@ -162351,6 +163063,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4705 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4705 sheet_name: api_response @@ -162807,6 +163521,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4706 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4706 sheet_name: api_response @@ -163263,6 +163979,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4707 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4707 sheet_name: api_response @@ -163719,6 +164437,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4708 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4708 sheet_name: api_response @@ -164175,6 +164895,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4709 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4709 sheet_name: api_response @@ -164631,6 +165353,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4801 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4801 sheet_name: api_response @@ -165087,6 +165811,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4802 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4802 sheet_name: api_response @@ -165543,6 +166269,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4803 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4803 sheet_name: api_response @@ -165999,6 +166727,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4804 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4804 sheet_name: api_response @@ -166455,6 +167185,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4805 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4805 sheet_name: api_response @@ -166911,6 +167643,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4806 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4806 sheet_name: api_response @@ -167367,6 +168101,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4807 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4807 sheet_name: api_response @@ -167823,6 +168559,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4808 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4808 sheet_name: api_response @@ -168279,6 +169017,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4809 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4809 sheet_name: api_response @@ -168735,6 +169475,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4810 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4810 sheet_name: api_response @@ -169191,6 +169933,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4811 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4811 sheet_name: api_response @@ -169647,6 +170391,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4812 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4812 sheet_name: api_response @@ -170103,6 +170849,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4813 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4813 sheet_name: api_response @@ -170559,6 +171307,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4814 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4814 sheet_name: api_response @@ -171015,6 +171765,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4815 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4815 sheet_name: api_response @@ -171471,6 +172223,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4816 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4816 sheet_name: api_response @@ -171927,6 +172681,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4817 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4817 sheet_name: api_response @@ -172383,6 +173139,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4818 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4818 sheet_name: api_response @@ -172839,6 +173597,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4819 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4819 sheet_name: api_response @@ -173295,6 +174055,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4820 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4820 sheet_name: api_response @@ -173751,6 +174513,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4821 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4821 sheet_name: api_response @@ -174207,6 +174971,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4822 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4822 sheet_name: api_response @@ -174663,6 +175429,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4823 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4823 sheet_name: api_response @@ -175119,6 +175887,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4824 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4824 sheet_name: api_response @@ -175575,6 +176345,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4825 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4825 sheet_name: api_response @@ -176031,6 +176803,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4826 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4826 sheet_name: api_response @@ -176487,6 +177261,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4827 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4827 sheet_name: api_response @@ -176943,6 +177719,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4828 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4828 sheet_name: api_response @@ -177399,6 +178177,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4829 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4829 sheet_name: api_response @@ -177855,6 +178635,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4830 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4830 sheet_name: api_response @@ -178311,6 +179093,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4831 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4831 sheet_name: api_response @@ -178767,6 +179551,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4832 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4832 sheet_name: api_response @@ -179223,6 +180009,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4833 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4833 sheet_name: api_response @@ -179679,6 +180467,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4834 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4834 sheet_name: api_response @@ -180135,6 +180925,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4835 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4835 sheet_name: api_response @@ -180591,6 +181383,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4836 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4836 sheet_name: api_response @@ -181047,6 +181841,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4837 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4837 sheet_name: api_response @@ -181503,6 +182299,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4838 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4838 sheet_name: api_response @@ -181959,6 +182757,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4901 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4901 sheet_name: api_response @@ -182415,6 +183215,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4902 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4902 sheet_name: api_response @@ -182871,6 +183673,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4903 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4903 sheet_name: api_response @@ -183327,6 +184131,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.4904 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.4904 sheet_name: api_response @@ -183783,6 +184589,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5000 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5000 sheet_name: api_response @@ -184239,6 +185047,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5101 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5101 sheet_name: api_response @@ -184695,6 +185505,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5102 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5102 sheet_name: api_response @@ -185151,6 +185963,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5103 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5103 sheet_name: api_response @@ -185607,6 +186421,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5104 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5104 sheet_name: api_response @@ -186063,6 +186879,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5105 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5105 sheet_name: api_response @@ -186519,6 +187337,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5106 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5106 sheet_name: api_response @@ -186975,6 +187795,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5107 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5107 sheet_name: api_response @@ -187431,6 +188253,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5108 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5108 sheet_name: api_response @@ -187887,6 +188711,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5109 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5109 sheet_name: api_response @@ -188343,6 +189169,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5110 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5110 sheet_name: api_response @@ -188799,6 +189627,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5111 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5111 sheet_name: api_response @@ -189255,6 +190085,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5301 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5301 sheet_name: api_response @@ -189711,6 +190543,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5302 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5302 sheet_name: api_response @@ -190167,6 +191001,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5303 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5303 sheet_name: api_response @@ -190623,6 +191459,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5304 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5304 sheet_name: api_response @@ -191079,6 +191917,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5305 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5305 sheet_name: api_response @@ -191535,6 +192375,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5306 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5306 sheet_name: api_response @@ -191991,6 +192833,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5307 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5307 sheet_name: api_response @@ -192447,6 +193291,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5308 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5308 sheet_name: api_response @@ -192903,6 +193749,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5309 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5309 sheet_name: api_response @@ -193359,6 +194207,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5310 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5310 sheet_name: api_response @@ -193815,6 +194665,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5401 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5401 sheet_name: api_response @@ -194271,6 +195123,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5402 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5402 sheet_name: api_response @@ -194727,6 +195581,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5501 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5501 sheet_name: api_response @@ -195183,6 +196039,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5502 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5502 sheet_name: api_response @@ -195639,6 +196497,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5503 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5503 sheet_name: api_response @@ -196095,6 +196955,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5504 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5504 sheet_name: api_response @@ -196551,6 +197413,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5505 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5505 sheet_name: api_response @@ -197007,6 +197871,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5506 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5506 sheet_name: api_response @@ -197463,6 +198329,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5507 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5507 sheet_name: api_response @@ -197919,6 +198787,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5508 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5508 sheet_name: api_response @@ -198375,6 +199245,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.5600 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.5600 sheet_name: api_response @@ -198831,6 +199703,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.congressional_district_age.7298 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.congressional_district_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.congressional_district_age.7298 sheet_name: api_response diff --git a/packages/census/acs_s0101_national_2024/source_package.yaml b/packages/census/acs_s0101_national_2024/source_package.yaml index 8044f46..fc7540e 100644 --- a/packages/census/acs_s0101_national_2024/source_package.yaml +++ b/packages/census/acs_s0101_national_2024/source_package.yaml @@ -14,6 +14,8 @@ artifact: sheet_name: api_response record_sets: - record_set_id: census_acs.acs1_{year}.s0101.national_age + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.national_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.national_age sheet_name: api_response diff --git a/packages/census/acs_s0101_state_2024/source_package.yaml b/packages/census/acs_s0101_state_2024/source_package.yaml index 357f0ef..c1b1571 100644 --- a/packages/census/acs_s0101_state_2024/source_package.yaml +++ b/packages/census/acs_s0101_state_2024/source_package.yaml @@ -14,6 +14,8 @@ artifact: sheet_name: api_response record_sets: - record_set_id: census_acs.acs1_{year}.s0101.state_age.01 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.01 sheet_name: api_response @@ -470,6 +472,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.02 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.02 sheet_name: api_response @@ -926,6 +930,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.04 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.04 sheet_name: api_response @@ -1382,6 +1388,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.05 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.05 sheet_name: api_response @@ -1838,6 +1846,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.06 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.06 sheet_name: api_response @@ -2294,6 +2304,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.08 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.08 sheet_name: api_response @@ -2750,6 +2762,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.09 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.09 sheet_name: api_response @@ -3206,6 +3220,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.10 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.10 sheet_name: api_response @@ -3662,6 +3678,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.11 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.11 sheet_name: api_response @@ -4118,6 +4136,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.12 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.12 sheet_name: api_response @@ -4574,6 +4594,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.13 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.13 sheet_name: api_response @@ -5030,6 +5052,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.15 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.15 sheet_name: api_response @@ -5486,6 +5510,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.16 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.16 sheet_name: api_response @@ -5942,6 +5968,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.17 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.17 sheet_name: api_response @@ -6398,6 +6426,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.18 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.18 sheet_name: api_response @@ -6854,6 +6884,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.19 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.19 sheet_name: api_response @@ -7310,6 +7342,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.20 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.20 sheet_name: api_response @@ -7766,6 +7800,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.21 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.21 sheet_name: api_response @@ -8222,6 +8258,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.22 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.22 sheet_name: api_response @@ -8678,6 +8716,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.23 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.23 sheet_name: api_response @@ -9134,6 +9174,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.24 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.24 sheet_name: api_response @@ -9590,6 +9632,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.25 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.25 sheet_name: api_response @@ -10046,6 +10090,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.26 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.26 sheet_name: api_response @@ -10502,6 +10548,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.27 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.27 sheet_name: api_response @@ -10958,6 +11006,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.28 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.28 sheet_name: api_response @@ -11414,6 +11464,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.29 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.29 sheet_name: api_response @@ -11870,6 +11922,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.30 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.30 sheet_name: api_response @@ -12326,6 +12380,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.31 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.31 sheet_name: api_response @@ -12782,6 +12838,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.32 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.32 sheet_name: api_response @@ -13238,6 +13296,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.33 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.33 sheet_name: api_response @@ -13694,6 +13754,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.34 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.34 sheet_name: api_response @@ -14150,6 +14212,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.35 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.35 sheet_name: api_response @@ -14606,6 +14670,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.36 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.36 sheet_name: api_response @@ -15062,6 +15128,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.37 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.37 sheet_name: api_response @@ -15518,6 +15586,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.38 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.38 sheet_name: api_response @@ -15974,6 +16044,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.39 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.39 sheet_name: api_response @@ -16430,6 +16502,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.40 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.40 sheet_name: api_response @@ -16886,6 +16960,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.41 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.41 sheet_name: api_response @@ -17342,6 +17418,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.42 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.42 sheet_name: api_response @@ -17798,6 +17876,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.44 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.44 sheet_name: api_response @@ -18254,6 +18334,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.45 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.45 sheet_name: api_response @@ -18710,6 +18792,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.46 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.46 sheet_name: api_response @@ -19166,6 +19250,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.47 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.47 sheet_name: api_response @@ -19622,6 +19708,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.48 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.48 sheet_name: api_response @@ -20078,6 +20166,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.49 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.49 sheet_name: api_response @@ -20534,6 +20624,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.50 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.50 sheet_name: api_response @@ -20990,6 +21082,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.51 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.51 sheet_name: api_response @@ -21446,6 +21540,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.53 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.53 sheet_name: api_response @@ -21902,6 +21998,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.54 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.54 sheet_name: api_response @@ -22358,6 +22456,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.55 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.55 sheet_name: api_response @@ -22814,6 +22914,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.56 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.56 sheet_name: api_response @@ -23270,6 +23372,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s0101.state_age.72 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s0101.state_age.v1 source_record_id_prefix: census_acs.acs1_{year}.s0101.state_age.72 sheet_name: api_response diff --git a/packages/census/acs_s2201_district_2024/source_package.yaml b/packages/census/acs_s2201_district_2024/source_package.yaml index a713c52..a66569a 100644 --- a/packages/census/acs_s2201_district_2024/source_package.yaml +++ b/packages/census/acs_s2201_district_2024/source_package.yaml @@ -16,6 +16,8 @@ artifact: sheet_name: api_response record_sets: - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0101 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0101 sheet_name: api_response @@ -106,6 +108,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0102 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0102 sheet_name: api_response @@ -196,6 +200,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0103 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0103 sheet_name: api_response @@ -286,6 +292,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0104 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0104 sheet_name: api_response @@ -376,6 +384,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0105 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0105 sheet_name: api_response @@ -466,6 +476,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0106 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0106 sheet_name: api_response @@ -556,6 +568,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0107 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0107 sheet_name: api_response @@ -646,6 +660,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0200 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0200 sheet_name: api_response @@ -736,6 +752,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0401 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0401 sheet_name: api_response @@ -826,6 +844,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0402 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0402 sheet_name: api_response @@ -916,6 +936,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0403 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0403 sheet_name: api_response @@ -1006,6 +1028,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0404 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0404 sheet_name: api_response @@ -1096,6 +1120,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0405 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0405 sheet_name: api_response @@ -1186,6 +1212,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0406 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0406 sheet_name: api_response @@ -1276,6 +1304,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0407 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0407 sheet_name: api_response @@ -1366,6 +1396,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0408 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0408 sheet_name: api_response @@ -1456,6 +1488,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0409 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0409 sheet_name: api_response @@ -1546,6 +1580,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0501 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0501 sheet_name: api_response @@ -1636,6 +1672,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0502 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0502 sheet_name: api_response @@ -1726,6 +1764,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0503 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0503 sheet_name: api_response @@ -1816,6 +1856,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0504 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0504 sheet_name: api_response @@ -1906,6 +1948,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0601 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0601 sheet_name: api_response @@ -1996,6 +2040,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0602 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0602 sheet_name: api_response @@ -2086,6 +2132,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0603 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0603 sheet_name: api_response @@ -2176,6 +2224,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0604 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0604 sheet_name: api_response @@ -2266,6 +2316,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0605 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0605 sheet_name: api_response @@ -2356,6 +2408,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0606 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0606 sheet_name: api_response @@ -2446,6 +2500,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0607 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0607 sheet_name: api_response @@ -2536,6 +2592,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0608 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0608 sheet_name: api_response @@ -2626,6 +2684,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0609 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0609 sheet_name: api_response @@ -2716,6 +2776,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0610 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0610 sheet_name: api_response @@ -2806,6 +2868,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0611 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0611 sheet_name: api_response @@ -2896,6 +2960,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0612 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0612 sheet_name: api_response @@ -2986,6 +3052,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0613 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0613 sheet_name: api_response @@ -3076,6 +3144,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0614 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0614 sheet_name: api_response @@ -3166,6 +3236,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0615 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0615 sheet_name: api_response @@ -3256,6 +3328,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0616 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0616 sheet_name: api_response @@ -3346,6 +3420,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0617 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0617 sheet_name: api_response @@ -3436,6 +3512,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0618 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0618 sheet_name: api_response @@ -3526,6 +3604,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0619 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0619 sheet_name: api_response @@ -3616,6 +3696,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0620 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0620 sheet_name: api_response @@ -3706,6 +3788,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0621 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0621 sheet_name: api_response @@ -3796,6 +3880,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0622 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0622 sheet_name: api_response @@ -3886,6 +3972,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0623 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0623 sheet_name: api_response @@ -3976,6 +4064,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0624 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0624 sheet_name: api_response @@ -4066,6 +4156,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0625 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0625 sheet_name: api_response @@ -4156,6 +4248,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0626 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0626 sheet_name: api_response @@ -4246,6 +4340,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0627 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0627 sheet_name: api_response @@ -4336,6 +4432,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0628 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0628 sheet_name: api_response @@ -4426,6 +4524,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0629 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0629 sheet_name: api_response @@ -4516,6 +4616,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0630 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0630 sheet_name: api_response @@ -4606,6 +4708,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0631 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0631 sheet_name: api_response @@ -4696,6 +4800,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0632 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0632 sheet_name: api_response @@ -4786,6 +4892,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0633 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0633 sheet_name: api_response @@ -4876,6 +4984,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0634 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0634 sheet_name: api_response @@ -4966,6 +5076,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0635 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0635 sheet_name: api_response @@ -5056,6 +5168,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0636 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0636 sheet_name: api_response @@ -5146,6 +5260,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0637 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0637 sheet_name: api_response @@ -5236,6 +5352,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0638 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0638 sheet_name: api_response @@ -5326,6 +5444,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0639 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0639 sheet_name: api_response @@ -5416,6 +5536,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0640 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0640 sheet_name: api_response @@ -5506,6 +5628,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0641 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0641 sheet_name: api_response @@ -5596,6 +5720,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0642 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0642 sheet_name: api_response @@ -5686,6 +5812,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0643 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0643 sheet_name: api_response @@ -5776,6 +5904,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0644 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0644 sheet_name: api_response @@ -5866,6 +5996,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0645 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0645 sheet_name: api_response @@ -5956,6 +6088,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0646 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0646 sheet_name: api_response @@ -6046,6 +6180,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0647 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0647 sheet_name: api_response @@ -6136,6 +6272,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0648 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0648 sheet_name: api_response @@ -6226,6 +6364,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0649 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0649 sheet_name: api_response @@ -6316,6 +6456,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0650 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0650 sheet_name: api_response @@ -6406,6 +6548,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0651 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0651 sheet_name: api_response @@ -6496,6 +6640,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0652 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0652 sheet_name: api_response @@ -6586,6 +6732,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0801 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0801 sheet_name: api_response @@ -6676,6 +6824,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0802 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0802 sheet_name: api_response @@ -6766,6 +6916,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0803 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0803 sheet_name: api_response @@ -6856,6 +7008,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0804 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0804 sheet_name: api_response @@ -6946,6 +7100,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0805 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0805 sheet_name: api_response @@ -7036,6 +7192,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0806 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0806 sheet_name: api_response @@ -7126,6 +7284,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0807 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0807 sheet_name: api_response @@ -7216,6 +7376,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0808 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0808 sheet_name: api_response @@ -7306,6 +7468,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0901 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0901 sheet_name: api_response @@ -7396,6 +7560,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0902 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0902 sheet_name: api_response @@ -7486,6 +7652,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0903 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0903 sheet_name: api_response @@ -7576,6 +7744,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0904 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0904 sheet_name: api_response @@ -7666,6 +7836,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.0905 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.0905 sheet_name: api_response @@ -7756,6 +7928,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1000 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1000 sheet_name: api_response @@ -7846,6 +8020,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1198 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1198 sheet_name: api_response @@ -7936,6 +8112,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1201 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1201 sheet_name: api_response @@ -8026,6 +8204,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1202 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1202 sheet_name: api_response @@ -8116,6 +8296,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1203 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1203 sheet_name: api_response @@ -8206,6 +8388,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1204 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1204 sheet_name: api_response @@ -8296,6 +8480,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1205 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1205 sheet_name: api_response @@ -8386,6 +8572,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1206 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1206 sheet_name: api_response @@ -8476,6 +8664,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1207 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1207 sheet_name: api_response @@ -8566,6 +8756,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1208 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1208 sheet_name: api_response @@ -8656,6 +8848,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1209 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1209 sheet_name: api_response @@ -8746,6 +8940,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1210 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1210 sheet_name: api_response @@ -8836,6 +9032,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1211 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1211 sheet_name: api_response @@ -8926,6 +9124,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1212 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1212 sheet_name: api_response @@ -9016,6 +9216,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1213 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1213 sheet_name: api_response @@ -9106,6 +9308,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1214 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1214 sheet_name: api_response @@ -9196,6 +9400,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1215 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1215 sheet_name: api_response @@ -9286,6 +9492,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1216 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1216 sheet_name: api_response @@ -9376,6 +9584,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1217 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1217 sheet_name: api_response @@ -9466,6 +9676,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1218 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1218 sheet_name: api_response @@ -9556,6 +9768,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1219 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1219 sheet_name: api_response @@ -9646,6 +9860,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1220 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1220 sheet_name: api_response @@ -9736,6 +9952,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1221 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1221 sheet_name: api_response @@ -9826,6 +10044,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1222 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1222 sheet_name: api_response @@ -9916,6 +10136,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1223 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1223 sheet_name: api_response @@ -10006,6 +10228,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1224 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1224 sheet_name: api_response @@ -10096,6 +10320,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1225 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1225 sheet_name: api_response @@ -10186,6 +10412,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1226 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1226 sheet_name: api_response @@ -10276,6 +10504,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1227 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1227 sheet_name: api_response @@ -10366,6 +10596,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1228 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1228 sheet_name: api_response @@ -10456,6 +10688,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1301 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1301 sheet_name: api_response @@ -10546,6 +10780,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1302 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1302 sheet_name: api_response @@ -10636,6 +10872,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1303 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1303 sheet_name: api_response @@ -10726,6 +10964,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1304 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1304 sheet_name: api_response @@ -10816,6 +11056,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1305 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1305 sheet_name: api_response @@ -10906,6 +11148,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1306 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1306 sheet_name: api_response @@ -10996,6 +11240,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1307 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1307 sheet_name: api_response @@ -11086,6 +11332,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1308 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1308 sheet_name: api_response @@ -11176,6 +11424,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1309 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1309 sheet_name: api_response @@ -11266,6 +11516,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1310 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1310 sheet_name: api_response @@ -11356,6 +11608,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1311 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1311 sheet_name: api_response @@ -11446,6 +11700,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1312 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1312 sheet_name: api_response @@ -11536,6 +11792,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1313 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1313 sheet_name: api_response @@ -11626,6 +11884,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1314 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1314 sheet_name: api_response @@ -11716,6 +11976,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1501 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1501 sheet_name: api_response @@ -11806,6 +12068,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1502 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1502 sheet_name: api_response @@ -11896,6 +12160,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1601 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1601 sheet_name: api_response @@ -11986,6 +12252,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1602 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1602 sheet_name: api_response @@ -12076,6 +12344,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1701 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1701 sheet_name: api_response @@ -12166,6 +12436,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1702 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1702 sheet_name: api_response @@ -12256,6 +12528,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1703 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1703 sheet_name: api_response @@ -12346,6 +12620,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1704 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1704 sheet_name: api_response @@ -12436,6 +12712,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1705 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1705 sheet_name: api_response @@ -12526,6 +12804,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1706 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1706 sheet_name: api_response @@ -12616,6 +12896,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1707 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1707 sheet_name: api_response @@ -12706,6 +12988,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1708 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1708 sheet_name: api_response @@ -12796,6 +13080,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1709 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1709 sheet_name: api_response @@ -12886,6 +13172,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1710 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1710 sheet_name: api_response @@ -12976,6 +13264,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1711 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1711 sheet_name: api_response @@ -13066,6 +13356,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1712 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1712 sheet_name: api_response @@ -13156,6 +13448,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1713 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1713 sheet_name: api_response @@ -13246,6 +13540,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1714 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1714 sheet_name: api_response @@ -13336,6 +13632,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1715 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1715 sheet_name: api_response @@ -13426,6 +13724,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1716 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1716 sheet_name: api_response @@ -13516,6 +13816,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1717 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1717 sheet_name: api_response @@ -13606,6 +13908,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1801 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1801 sheet_name: api_response @@ -13696,6 +14000,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1802 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1802 sheet_name: api_response @@ -13786,6 +14092,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1803 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1803 sheet_name: api_response @@ -13876,6 +14184,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1804 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1804 sheet_name: api_response @@ -13966,6 +14276,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1805 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1805 sheet_name: api_response @@ -14056,6 +14368,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1806 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1806 sheet_name: api_response @@ -14146,6 +14460,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1807 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1807 sheet_name: api_response @@ -14236,6 +14552,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1808 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1808 sheet_name: api_response @@ -14326,6 +14644,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1809 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1809 sheet_name: api_response @@ -14416,6 +14736,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1901 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1901 sheet_name: api_response @@ -14506,6 +14828,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1902 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1902 sheet_name: api_response @@ -14596,6 +14920,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1903 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1903 sheet_name: api_response @@ -14686,6 +15012,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.1904 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.1904 sheet_name: api_response @@ -14776,6 +15104,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2001 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2001 sheet_name: api_response @@ -14866,6 +15196,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2002 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2002 sheet_name: api_response @@ -14956,6 +15288,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2003 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2003 sheet_name: api_response @@ -15046,6 +15380,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2004 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2004 sheet_name: api_response @@ -15136,6 +15472,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2101 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2101 sheet_name: api_response @@ -15226,6 +15564,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2102 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2102 sheet_name: api_response @@ -15316,6 +15656,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2103 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2103 sheet_name: api_response @@ -15406,6 +15748,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2104 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2104 sheet_name: api_response @@ -15496,6 +15840,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2105 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2105 sheet_name: api_response @@ -15586,6 +15932,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2106 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2106 sheet_name: api_response @@ -15676,6 +16024,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2201 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2201 sheet_name: api_response @@ -15766,6 +16116,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2202 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2202 sheet_name: api_response @@ -15856,6 +16208,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2203 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2203 sheet_name: api_response @@ -15946,6 +16300,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2204 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2204 sheet_name: api_response @@ -16036,6 +16392,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2205 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2205 sheet_name: api_response @@ -16126,6 +16484,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2206 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2206 sheet_name: api_response @@ -16216,6 +16576,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2301 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2301 sheet_name: api_response @@ -16306,6 +16668,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2302 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2302 sheet_name: api_response @@ -16396,6 +16760,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2401 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2401 sheet_name: api_response @@ -16486,6 +16852,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2402 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2402 sheet_name: api_response @@ -16576,6 +16944,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2403 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2403 sheet_name: api_response @@ -16666,6 +17036,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2404 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2404 sheet_name: api_response @@ -16756,6 +17128,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2405 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2405 sheet_name: api_response @@ -16846,6 +17220,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2406 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2406 sheet_name: api_response @@ -16936,6 +17312,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2407 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2407 sheet_name: api_response @@ -17026,6 +17404,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2408 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2408 sheet_name: api_response @@ -17116,6 +17496,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2501 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2501 sheet_name: api_response @@ -17206,6 +17588,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2502 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2502 sheet_name: api_response @@ -17296,6 +17680,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2503 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2503 sheet_name: api_response @@ -17386,6 +17772,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2504 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2504 sheet_name: api_response @@ -17476,6 +17864,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2505 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2505 sheet_name: api_response @@ -17566,6 +17956,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2506 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2506 sheet_name: api_response @@ -17656,6 +18048,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2507 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2507 sheet_name: api_response @@ -17746,6 +18140,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2508 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2508 sheet_name: api_response @@ -17836,6 +18232,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2509 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2509 sheet_name: api_response @@ -17926,6 +18324,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2601 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2601 sheet_name: api_response @@ -18016,6 +18416,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2602 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2602 sheet_name: api_response @@ -18106,6 +18508,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2603 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2603 sheet_name: api_response @@ -18196,6 +18600,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2604 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2604 sheet_name: api_response @@ -18286,6 +18692,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2605 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2605 sheet_name: api_response @@ -18376,6 +18784,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2606 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2606 sheet_name: api_response @@ -18466,6 +18876,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2607 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2607 sheet_name: api_response @@ -18556,6 +18968,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2608 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2608 sheet_name: api_response @@ -18646,6 +19060,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2609 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2609 sheet_name: api_response @@ -18736,6 +19152,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2610 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2610 sheet_name: api_response @@ -18826,6 +19244,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2611 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2611 sheet_name: api_response @@ -18916,6 +19336,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2612 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2612 sheet_name: api_response @@ -19006,6 +19428,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2613 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2613 sheet_name: api_response @@ -19096,6 +19520,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2701 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2701 sheet_name: api_response @@ -19186,6 +19612,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2702 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2702 sheet_name: api_response @@ -19276,6 +19704,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2703 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2703 sheet_name: api_response @@ -19366,6 +19796,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2704 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2704 sheet_name: api_response @@ -19456,6 +19888,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2705 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2705 sheet_name: api_response @@ -19546,6 +19980,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2706 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2706 sheet_name: api_response @@ -19636,6 +20072,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2707 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2707 sheet_name: api_response @@ -19726,6 +20164,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2708 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2708 sheet_name: api_response @@ -19816,6 +20256,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2801 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2801 sheet_name: api_response @@ -19906,6 +20348,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2802 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2802 sheet_name: api_response @@ -19996,6 +20440,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2803 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2803 sheet_name: api_response @@ -20086,6 +20532,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2804 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2804 sheet_name: api_response @@ -20176,6 +20624,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2901 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2901 sheet_name: api_response @@ -20266,6 +20716,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2902 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2902 sheet_name: api_response @@ -20356,6 +20808,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2903 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2903 sheet_name: api_response @@ -20446,6 +20900,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2904 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2904 sheet_name: api_response @@ -20536,6 +20992,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2905 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2905 sheet_name: api_response @@ -20626,6 +21084,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2906 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2906 sheet_name: api_response @@ -20716,6 +21176,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2907 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2907 sheet_name: api_response @@ -20806,6 +21268,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.2908 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.2908 sheet_name: api_response @@ -20896,6 +21360,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3001 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3001 sheet_name: api_response @@ -20986,6 +21452,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3002 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3002 sheet_name: api_response @@ -21076,6 +21544,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3101 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3101 sheet_name: api_response @@ -21166,6 +21636,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3102 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3102 sheet_name: api_response @@ -21256,6 +21728,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3103 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3103 sheet_name: api_response @@ -21346,6 +21820,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3201 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3201 sheet_name: api_response @@ -21436,6 +21912,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3202 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3202 sheet_name: api_response @@ -21526,6 +22004,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3203 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3203 sheet_name: api_response @@ -21616,6 +22096,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3204 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3204 sheet_name: api_response @@ -21706,6 +22188,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3301 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3301 sheet_name: api_response @@ -21796,6 +22280,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3302 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3302 sheet_name: api_response @@ -21886,6 +22372,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3401 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3401 sheet_name: api_response @@ -21976,6 +22464,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3402 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3402 sheet_name: api_response @@ -22066,6 +22556,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3403 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3403 sheet_name: api_response @@ -22156,6 +22648,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3404 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3404 sheet_name: api_response @@ -22246,6 +22740,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3405 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3405 sheet_name: api_response @@ -22336,6 +22832,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3406 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3406 sheet_name: api_response @@ -22426,6 +22924,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3407 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3407 sheet_name: api_response @@ -22516,6 +23016,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3408 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3408 sheet_name: api_response @@ -22606,6 +23108,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3409 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3409 sheet_name: api_response @@ -22696,6 +23200,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3410 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3410 sheet_name: api_response @@ -22786,6 +23292,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3411 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3411 sheet_name: api_response @@ -22876,6 +23384,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3412 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3412 sheet_name: api_response @@ -22966,6 +23476,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3501 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3501 sheet_name: api_response @@ -23056,6 +23568,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3502 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3502 sheet_name: api_response @@ -23146,6 +23660,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3503 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3503 sheet_name: api_response @@ -23236,6 +23752,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3601 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3601 sheet_name: api_response @@ -23326,6 +23844,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3602 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3602 sheet_name: api_response @@ -23416,6 +23936,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3603 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3603 sheet_name: api_response @@ -23506,6 +24028,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3604 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3604 sheet_name: api_response @@ -23596,6 +24120,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3605 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3605 sheet_name: api_response @@ -23686,6 +24212,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3606 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3606 sheet_name: api_response @@ -23776,6 +24304,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3607 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3607 sheet_name: api_response @@ -23866,6 +24396,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3608 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3608 sheet_name: api_response @@ -23956,6 +24488,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3609 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3609 sheet_name: api_response @@ -24046,6 +24580,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3610 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3610 sheet_name: api_response @@ -24136,6 +24672,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3611 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3611 sheet_name: api_response @@ -24226,6 +24764,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3612 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3612 sheet_name: api_response @@ -24316,6 +24856,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3613 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3613 sheet_name: api_response @@ -24406,6 +24948,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3614 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3614 sheet_name: api_response @@ -24496,6 +25040,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3615 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3615 sheet_name: api_response @@ -24586,6 +25132,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3616 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3616 sheet_name: api_response @@ -24676,6 +25224,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3617 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3617 sheet_name: api_response @@ -24766,6 +25316,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3618 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3618 sheet_name: api_response @@ -24856,6 +25408,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3619 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3619 sheet_name: api_response @@ -24946,6 +25500,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3620 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3620 sheet_name: api_response @@ -25036,6 +25592,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3621 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3621 sheet_name: api_response @@ -25126,6 +25684,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3622 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3622 sheet_name: api_response @@ -25216,6 +25776,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3623 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3623 sheet_name: api_response @@ -25306,6 +25868,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3624 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3624 sheet_name: api_response @@ -25396,6 +25960,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3625 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3625 sheet_name: api_response @@ -25486,6 +26052,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3626 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3626 sheet_name: api_response @@ -25576,6 +26144,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3701 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3701 sheet_name: api_response @@ -25666,6 +26236,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3702 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3702 sheet_name: api_response @@ -25756,6 +26328,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3703 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3703 sheet_name: api_response @@ -25846,6 +26420,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3704 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3704 sheet_name: api_response @@ -25936,6 +26512,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3705 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3705 sheet_name: api_response @@ -26026,6 +26604,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3706 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3706 sheet_name: api_response @@ -26116,6 +26696,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3707 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3707 sheet_name: api_response @@ -26206,6 +26788,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3708 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3708 sheet_name: api_response @@ -26296,6 +26880,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3709 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3709 sheet_name: api_response @@ -26386,6 +26972,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3710 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3710 sheet_name: api_response @@ -26476,6 +27064,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3711 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3711 sheet_name: api_response @@ -26566,6 +27156,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3712 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3712 sheet_name: api_response @@ -26656,6 +27248,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3713 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3713 sheet_name: api_response @@ -26746,6 +27340,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3714 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3714 sheet_name: api_response @@ -26836,6 +27432,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3800 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3800 sheet_name: api_response @@ -26926,6 +27524,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3901 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3901 sheet_name: api_response @@ -27016,6 +27616,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3902 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3902 sheet_name: api_response @@ -27106,6 +27708,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3903 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3903 sheet_name: api_response @@ -27196,6 +27800,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3904 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3904 sheet_name: api_response @@ -27286,6 +27892,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3905 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3905 sheet_name: api_response @@ -27376,6 +27984,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3906 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3906 sheet_name: api_response @@ -27466,6 +28076,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3907 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3907 sheet_name: api_response @@ -27556,6 +28168,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3908 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3908 sheet_name: api_response @@ -27646,6 +28260,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3909 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3909 sheet_name: api_response @@ -27736,6 +28352,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3910 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3910 sheet_name: api_response @@ -27826,6 +28444,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3911 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3911 sheet_name: api_response @@ -27916,6 +28536,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3912 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3912 sheet_name: api_response @@ -28006,6 +28628,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3913 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3913 sheet_name: api_response @@ -28096,6 +28720,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3914 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3914 sheet_name: api_response @@ -28186,6 +28812,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.3915 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.3915 sheet_name: api_response @@ -28276,6 +28904,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4001 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4001 sheet_name: api_response @@ -28366,6 +28996,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4002 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4002 sheet_name: api_response @@ -28456,6 +29088,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4003 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4003 sheet_name: api_response @@ -28546,6 +29180,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4004 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4004 sheet_name: api_response @@ -28636,6 +29272,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4005 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4005 sheet_name: api_response @@ -28726,6 +29364,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4101 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4101 sheet_name: api_response @@ -28816,6 +29456,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4102 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4102 sheet_name: api_response @@ -28906,6 +29548,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4103 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4103 sheet_name: api_response @@ -28996,6 +29640,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4104 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4104 sheet_name: api_response @@ -29086,6 +29732,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4105 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4105 sheet_name: api_response @@ -29176,6 +29824,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4106 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4106 sheet_name: api_response @@ -29266,6 +29916,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4201 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4201 sheet_name: api_response @@ -29356,6 +30008,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4202 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4202 sheet_name: api_response @@ -29446,6 +30100,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4203 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4203 sheet_name: api_response @@ -29536,6 +30192,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4204 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4204 sheet_name: api_response @@ -29626,6 +30284,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4205 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4205 sheet_name: api_response @@ -29716,6 +30376,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4206 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4206 sheet_name: api_response @@ -29806,6 +30468,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4207 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4207 sheet_name: api_response @@ -29896,6 +30560,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4208 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4208 sheet_name: api_response @@ -29986,6 +30652,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4209 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4209 sheet_name: api_response @@ -30076,6 +30744,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4210 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4210 sheet_name: api_response @@ -30166,6 +30836,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4211 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4211 sheet_name: api_response @@ -30256,6 +30928,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4212 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4212 sheet_name: api_response @@ -30346,6 +31020,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4213 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4213 sheet_name: api_response @@ -30436,6 +31112,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4214 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4214 sheet_name: api_response @@ -30526,6 +31204,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4215 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4215 sheet_name: api_response @@ -30616,6 +31296,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4216 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4216 sheet_name: api_response @@ -30706,6 +31388,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4217 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4217 sheet_name: api_response @@ -30796,6 +31480,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4401 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4401 sheet_name: api_response @@ -30886,6 +31572,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4402 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4402 sheet_name: api_response @@ -30976,6 +31664,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4501 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4501 sheet_name: api_response @@ -31066,6 +31756,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4502 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4502 sheet_name: api_response @@ -31156,6 +31848,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4503 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4503 sheet_name: api_response @@ -31246,6 +31940,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4504 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4504 sheet_name: api_response @@ -31336,6 +32032,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4505 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4505 sheet_name: api_response @@ -31426,6 +32124,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4506 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4506 sheet_name: api_response @@ -31516,6 +32216,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4507 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4507 sheet_name: api_response @@ -31606,6 +32308,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4600 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4600 sheet_name: api_response @@ -31696,6 +32400,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4701 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4701 sheet_name: api_response @@ -31786,6 +32492,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4702 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4702 sheet_name: api_response @@ -31876,6 +32584,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4703 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4703 sheet_name: api_response @@ -31966,6 +32676,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4704 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4704 sheet_name: api_response @@ -32056,6 +32768,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4705 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4705 sheet_name: api_response @@ -32146,6 +32860,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4706 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4706 sheet_name: api_response @@ -32236,6 +32952,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4707 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4707 sheet_name: api_response @@ -32326,6 +33044,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4708 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4708 sheet_name: api_response @@ -32416,6 +33136,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4709 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4709 sheet_name: api_response @@ -32506,6 +33228,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4801 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4801 sheet_name: api_response @@ -32596,6 +33320,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4802 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4802 sheet_name: api_response @@ -32686,6 +33412,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4803 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4803 sheet_name: api_response @@ -32776,6 +33504,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4804 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4804 sheet_name: api_response @@ -32866,6 +33596,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4805 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4805 sheet_name: api_response @@ -32956,6 +33688,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4806 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4806 sheet_name: api_response @@ -33046,6 +33780,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4807 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4807 sheet_name: api_response @@ -33136,6 +33872,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4808 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4808 sheet_name: api_response @@ -33226,6 +33964,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4809 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4809 sheet_name: api_response @@ -33316,6 +34056,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4810 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4810 sheet_name: api_response @@ -33406,6 +34148,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4811 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4811 sheet_name: api_response @@ -33496,6 +34240,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4812 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4812 sheet_name: api_response @@ -33586,6 +34332,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4813 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4813 sheet_name: api_response @@ -33676,6 +34424,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4814 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4814 sheet_name: api_response @@ -33766,6 +34516,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4815 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4815 sheet_name: api_response @@ -33856,6 +34608,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4816 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4816 sheet_name: api_response @@ -33946,6 +34700,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4817 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4817 sheet_name: api_response @@ -34036,6 +34792,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4818 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4818 sheet_name: api_response @@ -34126,6 +34884,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4819 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4819 sheet_name: api_response @@ -34216,6 +34976,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4820 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4820 sheet_name: api_response @@ -34306,6 +35068,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4821 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4821 sheet_name: api_response @@ -34396,6 +35160,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4822 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4822 sheet_name: api_response @@ -34486,6 +35252,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4823 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4823 sheet_name: api_response @@ -34576,6 +35344,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4824 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4824 sheet_name: api_response @@ -34666,6 +35436,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4825 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4825 sheet_name: api_response @@ -34756,6 +35528,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4826 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4826 sheet_name: api_response @@ -34846,6 +35620,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4827 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4827 sheet_name: api_response @@ -34936,6 +35712,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4828 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4828 sheet_name: api_response @@ -35026,6 +35804,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4829 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4829 sheet_name: api_response @@ -35116,6 +35896,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4830 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4830 sheet_name: api_response @@ -35206,6 +35988,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4831 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4831 sheet_name: api_response @@ -35296,6 +36080,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4832 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4832 sheet_name: api_response @@ -35386,6 +36172,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4833 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4833 sheet_name: api_response @@ -35476,6 +36264,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4834 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4834 sheet_name: api_response @@ -35566,6 +36356,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4835 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4835 sheet_name: api_response @@ -35656,6 +36448,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4836 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4836 sheet_name: api_response @@ -35746,6 +36540,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4837 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4837 sheet_name: api_response @@ -35836,6 +36632,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4838 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4838 sheet_name: api_response @@ -35926,6 +36724,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4901 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4901 sheet_name: api_response @@ -36016,6 +36816,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4902 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4902 sheet_name: api_response @@ -36106,6 +36908,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4903 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4903 sheet_name: api_response @@ -36196,6 +37000,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.4904 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.4904 sheet_name: api_response @@ -36286,6 +37092,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5000 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5000 sheet_name: api_response @@ -36376,6 +37184,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5101 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5101 sheet_name: api_response @@ -36466,6 +37276,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5102 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5102 sheet_name: api_response @@ -36556,6 +37368,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5103 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5103 sheet_name: api_response @@ -36646,6 +37460,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5104 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5104 sheet_name: api_response @@ -36736,6 +37552,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5105 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5105 sheet_name: api_response @@ -36826,6 +37644,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5106 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5106 sheet_name: api_response @@ -36916,6 +37736,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5107 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5107 sheet_name: api_response @@ -37006,6 +37828,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5108 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5108 sheet_name: api_response @@ -37096,6 +37920,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5109 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5109 sheet_name: api_response @@ -37186,6 +38012,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5110 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5110 sheet_name: api_response @@ -37276,6 +38104,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5111 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5111 sheet_name: api_response @@ -37366,6 +38196,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5301 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5301 sheet_name: api_response @@ -37456,6 +38288,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5302 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5302 sheet_name: api_response @@ -37546,6 +38380,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5303 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5303 sheet_name: api_response @@ -37636,6 +38472,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5304 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5304 sheet_name: api_response @@ -37726,6 +38564,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5305 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5305 sheet_name: api_response @@ -37816,6 +38656,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5306 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5306 sheet_name: api_response @@ -37906,6 +38748,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5307 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5307 sheet_name: api_response @@ -37996,6 +38840,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5308 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5308 sheet_name: api_response @@ -38086,6 +38932,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5309 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5309 sheet_name: api_response @@ -38176,6 +39024,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5310 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5310 sheet_name: api_response @@ -38266,6 +39116,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5401 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5401 sheet_name: api_response @@ -38356,6 +39208,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5402 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5402 sheet_name: api_response @@ -38446,6 +39300,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5501 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5501 sheet_name: api_response @@ -38536,6 +39392,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5502 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5502 sheet_name: api_response @@ -38626,6 +39484,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5503 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5503 sheet_name: api_response @@ -38716,6 +39576,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5504 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5504 sheet_name: api_response @@ -38806,6 +39668,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5505 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5505 sheet_name: api_response @@ -38896,6 +39760,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5506 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5506 sheet_name: api_response @@ -38986,6 +39852,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5507 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5507 sheet_name: api_response @@ -39076,6 +39944,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5508 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5508 sheet_name: api_response @@ -39166,6 +40036,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.5600 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.5600 sheet_name: api_response @@ -39256,6 +40128,8 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_acs.acs1_{year}.s2201.congressional_district_snap.7298 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.s2201.congressional_district_snap.v1 source_record_id_prefix: census_acs.acs1_{year}.s2201.congressional_district_snap.7298 sheet_name: api_response diff --git a/packages/census/b01001_female_15_44_2023/source_package.yaml b/packages/census/b01001_female_15_44_2023/source_package.yaml index 288bd40..2b62ced 100644 --- a/packages/census/b01001_female_15_44_2023/source_package.yaml +++ b/packages/census/b01001_female_15_44_2023/source_package.yaml @@ -15,6 +15,8 @@ artifact: sheet_name: api_response record_sets: - record_set_id: census_acs.acs1_{year}.b01001.female_age.01 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.01 sheet_name: api_response @@ -267,6 +269,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.02 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.02 sheet_name: api_response @@ -519,6 +523,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.04 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.04 sheet_name: api_response @@ -771,6 +777,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.05 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.05 sheet_name: api_response @@ -1023,6 +1031,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.06 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.06 sheet_name: api_response @@ -1275,6 +1285,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.08 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.08 sheet_name: api_response @@ -1527,6 +1539,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.09 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.09 sheet_name: api_response @@ -1779,6 +1793,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.10 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.10 sheet_name: api_response @@ -2031,6 +2047,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.11 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.11 sheet_name: api_response @@ -2283,6 +2301,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.12 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.12 sheet_name: api_response @@ -2535,6 +2555,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.13 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.13 sheet_name: api_response @@ -2787,6 +2809,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.15 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.15 sheet_name: api_response @@ -3039,6 +3063,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.16 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.16 sheet_name: api_response @@ -3291,6 +3317,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.17 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.17 sheet_name: api_response @@ -3543,6 +3571,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.18 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.18 sheet_name: api_response @@ -3795,6 +3825,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.19 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.19 sheet_name: api_response @@ -4047,6 +4079,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.20 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.20 sheet_name: api_response @@ -4299,6 +4333,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.21 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.21 sheet_name: api_response @@ -4551,6 +4587,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.22 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.22 sheet_name: api_response @@ -4803,6 +4841,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.23 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.23 sheet_name: api_response @@ -5055,6 +5095,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.24 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.24 sheet_name: api_response @@ -5307,6 +5349,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.25 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.25 sheet_name: api_response @@ -5559,6 +5603,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.26 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.26 sheet_name: api_response @@ -5811,6 +5857,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.27 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.27 sheet_name: api_response @@ -6063,6 +6111,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.28 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.28 sheet_name: api_response @@ -6315,6 +6365,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.29 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.29 sheet_name: api_response @@ -6567,6 +6619,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.30 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.30 sheet_name: api_response @@ -6819,6 +6873,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.31 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.31 sheet_name: api_response @@ -7071,6 +7127,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.32 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.32 sheet_name: api_response @@ -7323,6 +7381,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.33 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.33 sheet_name: api_response @@ -7575,6 +7635,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.34 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.34 sheet_name: api_response @@ -7827,6 +7889,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.35 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.35 sheet_name: api_response @@ -8079,6 +8143,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.36 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.36 sheet_name: api_response @@ -8331,6 +8397,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.37 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.37 sheet_name: api_response @@ -8583,6 +8651,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.38 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.38 sheet_name: api_response @@ -8835,6 +8905,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.39 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.39 sheet_name: api_response @@ -9087,6 +9159,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.40 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.40 sheet_name: api_response @@ -9339,6 +9413,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.41 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.41 sheet_name: api_response @@ -9591,6 +9667,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.42 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.42 sheet_name: api_response @@ -9843,6 +9921,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.44 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.44 sheet_name: api_response @@ -10095,6 +10175,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.45 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.45 sheet_name: api_response @@ -10347,6 +10429,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.46 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.46 sheet_name: api_response @@ -10599,6 +10683,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.47 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.47 sheet_name: api_response @@ -10851,6 +10937,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.48 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.48 sheet_name: api_response @@ -11103,6 +11191,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.49 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.49 sheet_name: api_response @@ -11355,6 +11445,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.50 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.50 sheet_name: api_response @@ -11607,6 +11699,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.51 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.51 sheet_name: api_response @@ -11859,6 +11953,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.53 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.53 sheet_name: api_response @@ -12111,6 +12207,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.54 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.54 sheet_name: api_response @@ -12363,6 +12461,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.55 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.55 sheet_name: api_response @@ -12615,6 +12715,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.56 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.56 sheet_name: api_response @@ -12867,6 +12969,8 @@ record_sets: value: female label: Sex - record_set_id: census_acs.acs1_{year}.b01001.female_age.72 + provenance_class: survey_aggregate + survey_instrument: ACS 1-year record_set_spec_id: census_acs.b01001.female_age.state.v1 source_record_id_prefix: census_acs.acs1_{year}.b01001.female_age.72 sheet_name: api_response diff --git a/packages/census/pep_2024_national_age_sex/source_package.yaml b/packages/census/pep_2024_national_age_sex/source_package.yaml index 7fc9fa6..2430034 100644 --- a/packages/census/pep_2024_national_age_sex/source_package.yaml +++ b/packages/census/pep_2024_national_age_sex/source_package.yaml @@ -220,6 +220,7 @@ artifact: AGE: 100 record_sets: - record_set_id: census_pep.cy2024.national_resident_population_age + provenance_class: census record_set_spec_id: census_pep.national_resident_population_age.v1 source_record_id_prefix: census_pep.cy2024.national_resident_population_age sheet_name: nc-est2024-agesex-res diff --git a/packages/census/pep_2024_state_age_sex/source_package.yaml b/packages/census/pep_2024_state_age_sex/source_package.yaml index 9dd7755..e2a2ac8 100644 --- a/packages/census/pep_2024_state_age_sex/source_package.yaml +++ b/packages/census/pep_2024_state_age_sex/source_package.yaml @@ -131598,6 +131598,7 @@ artifact: AGE: 85 record_sets: - record_set_id: census_pep.v2024.cy2024.state_resident_population.01 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.01 sheet_name: sc-est2024-alldata6 @@ -133192,6 +133193,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.02 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.02 sheet_name: sc-est2024-alldata6 @@ -134786,6 +134788,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.04 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.04 sheet_name: sc-est2024-alldata6 @@ -136380,6 +136383,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.05 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.05 sheet_name: sc-est2024-alldata6 @@ -137974,6 +137978,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.06 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.06 sheet_name: sc-est2024-alldata6 @@ -139568,6 +139573,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.08 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.08 sheet_name: sc-est2024-alldata6 @@ -141162,6 +141168,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.09 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.09 sheet_name: sc-est2024-alldata6 @@ -142756,6 +142763,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.10 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.10 sheet_name: sc-est2024-alldata6 @@ -144350,6 +144358,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.11 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.11 sheet_name: sc-est2024-alldata6 @@ -145944,6 +145953,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.12 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.12 sheet_name: sc-est2024-alldata6 @@ -147538,6 +147548,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.13 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.13 sheet_name: sc-est2024-alldata6 @@ -149132,6 +149143,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.15 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.15 sheet_name: sc-est2024-alldata6 @@ -150726,6 +150738,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.16 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.16 sheet_name: sc-est2024-alldata6 @@ -152320,6 +152333,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.17 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.17 sheet_name: sc-est2024-alldata6 @@ -153914,6 +153928,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.18 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.18 sheet_name: sc-est2024-alldata6 @@ -155508,6 +155523,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.19 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.19 sheet_name: sc-est2024-alldata6 @@ -157102,6 +157118,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.20 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.20 sheet_name: sc-est2024-alldata6 @@ -158696,6 +158713,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.21 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.21 sheet_name: sc-est2024-alldata6 @@ -160290,6 +160308,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.22 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.22 sheet_name: sc-est2024-alldata6 @@ -161884,6 +161903,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.23 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.23 sheet_name: sc-est2024-alldata6 @@ -163478,6 +163498,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.24 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.24 sheet_name: sc-est2024-alldata6 @@ -165072,6 +165093,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.25 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.25 sheet_name: sc-est2024-alldata6 @@ -166666,6 +166688,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.26 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.26 sheet_name: sc-est2024-alldata6 @@ -168260,6 +168283,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.27 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.27 sheet_name: sc-est2024-alldata6 @@ -169854,6 +169878,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.28 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.28 sheet_name: sc-est2024-alldata6 @@ -171448,6 +171473,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.29 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.29 sheet_name: sc-est2024-alldata6 @@ -173042,6 +173068,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.30 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.30 sheet_name: sc-est2024-alldata6 @@ -174636,6 +174663,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.31 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.31 sheet_name: sc-est2024-alldata6 @@ -176230,6 +176258,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.32 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.32 sheet_name: sc-est2024-alldata6 @@ -177824,6 +177853,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.33 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.33 sheet_name: sc-est2024-alldata6 @@ -179418,6 +179448,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.34 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.34 sheet_name: sc-est2024-alldata6 @@ -181012,6 +181043,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.35 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.35 sheet_name: sc-est2024-alldata6 @@ -182606,6 +182638,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.36 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.36 sheet_name: sc-est2024-alldata6 @@ -184200,6 +184233,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.37 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.37 sheet_name: sc-est2024-alldata6 @@ -185794,6 +185828,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.38 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.38 sheet_name: sc-est2024-alldata6 @@ -187388,6 +187423,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.39 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.39 sheet_name: sc-est2024-alldata6 @@ -188982,6 +189018,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.40 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.40 sheet_name: sc-est2024-alldata6 @@ -190576,6 +190613,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.41 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.41 sheet_name: sc-est2024-alldata6 @@ -192170,6 +192208,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.42 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.42 sheet_name: sc-est2024-alldata6 @@ -193764,6 +193803,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.44 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.44 sheet_name: sc-est2024-alldata6 @@ -195358,6 +195398,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.45 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.45 sheet_name: sc-est2024-alldata6 @@ -196952,6 +196993,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.46 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.46 sheet_name: sc-est2024-alldata6 @@ -198546,6 +198588,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.47 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.47 sheet_name: sc-est2024-alldata6 @@ -200140,6 +200183,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.48 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.48 sheet_name: sc-est2024-alldata6 @@ -201734,6 +201778,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.49 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.49 sheet_name: sc-est2024-alldata6 @@ -203328,6 +203373,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.50 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.50 sheet_name: sc-est2024-alldata6 @@ -204922,6 +204968,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.51 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.51 sheet_name: sc-est2024-alldata6 @@ -206516,6 +206563,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.53 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.53 sheet_name: sc-est2024-alldata6 @@ -208110,6 +208158,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.54 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.54 sheet_name: sc-est2024-alldata6 @@ -209704,6 +209753,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.55 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.55 sheet_name: sc-est2024-alldata6 @@ -211298,6 +211348,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census_pep.v2024.cy2024.state_resident_population.56 + provenance_class: census record_set_spec_id: census_pep.v2024.state_resident_population_age.v1 source_record_id_prefix: census_pep.v2024.cy2024.state_resident_population.56 sheet_name: sc-est2024-alldata6 diff --git a/packages/census/population_projections_2023/source_package.yaml b/packages/census/population_projections_2023/source_package.yaml index fa61b37..ec626f5 100644 --- a/packages/census/population_projections_2023/source_package.yaml +++ b/packages/census/population_projections_2023/source_package.yaml @@ -26,6 +26,7 @@ artifact: YEAR: '{year}' record_sets: - record_set_id: census.popproj2023.cy{year}.national_population.age_0 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -108,6 +109,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_1 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -190,6 +192,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_2 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -272,6 +275,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_3 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -354,6 +358,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_4 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -436,6 +441,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_5 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -518,6 +524,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_6 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -600,6 +607,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_7 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -682,6 +690,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_8 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -764,6 +773,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_9 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -846,6 +856,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_10 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -928,6 +939,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_11 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -1010,6 +1022,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_12 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -1092,6 +1105,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_13 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -1174,6 +1188,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_14 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -1256,6 +1271,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_15 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -1338,6 +1354,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_16 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -1420,6 +1437,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_17 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -1502,6 +1520,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_18 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -1584,6 +1603,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_19 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -1666,6 +1686,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_20 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -1748,6 +1769,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_21 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -1830,6 +1852,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_22 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -1912,6 +1935,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_23 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -1994,6 +2018,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_24 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -2076,6 +2101,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_25 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -2158,6 +2184,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_26 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -2240,6 +2267,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_27 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -2322,6 +2350,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_28 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -2404,6 +2433,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_29 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -2486,6 +2516,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_30 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -2568,6 +2599,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_31 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -2650,6 +2682,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_32 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -2732,6 +2765,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_33 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -2814,6 +2848,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_34 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -2896,6 +2931,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_35 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -2978,6 +3014,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_36 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -3060,6 +3097,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_37 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -3142,6 +3180,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_38 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -3224,6 +3263,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_39 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -3306,6 +3346,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_40 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -3388,6 +3429,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_41 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -3470,6 +3512,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_42 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -3552,6 +3595,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_43 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -3634,6 +3678,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_44 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -3716,6 +3761,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_45 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -3798,6 +3844,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_46 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -3880,6 +3927,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_47 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -3962,6 +4010,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_48 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -4044,6 +4093,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_49 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -4126,6 +4176,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_50 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -4208,6 +4259,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_51 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -4290,6 +4342,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_52 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -4372,6 +4425,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_53 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -4454,6 +4508,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_54 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -4536,6 +4591,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_55 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -4618,6 +4674,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_56 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -4700,6 +4757,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_57 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -4782,6 +4840,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_58 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -4864,6 +4923,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_59 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -4946,6 +5006,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_60 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -5028,6 +5089,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_61 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -5110,6 +5172,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_62 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -5192,6 +5255,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_63 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -5274,6 +5338,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_64 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -5356,6 +5421,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_65 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -5438,6 +5504,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_66 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -5520,6 +5587,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_67 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -5602,6 +5670,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_68 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -5684,6 +5753,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_69 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -5766,6 +5836,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_70 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -5848,6 +5919,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_71 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -5930,6 +6002,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_72 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -6012,6 +6085,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_73 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -6094,6 +6168,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_74 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -6176,6 +6251,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_75 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -6258,6 +6334,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_76 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -6340,6 +6417,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_77 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -6422,6 +6500,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_78 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -6504,6 +6583,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_79 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -6586,6 +6666,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_80 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -6668,6 +6749,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_81 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -6750,6 +6832,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_82 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -6832,6 +6915,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_83 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -6914,6 +6998,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_84 + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid @@ -6996,6 +7081,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: census.popproj2023.cy{year}.national_population.age_85_plus + provenance_class: model_output record_set_spec_id: census.popproj2023.national_population_by_age.v1 source_record_id_prefix: census.popproj2023.cy{year}.national_population sheet_name: np2023_d5_mid diff --git a/packages/census/stc_individual_income_tax/source_package.yaml b/packages/census/stc_individual_income_tax/source_package.yaml index d6e08ff..3fc0053 100644 --- a/packages/census/stc_individual_income_tax/source_package.yaml +++ b/packages/census/stc_individual_income_tax/source_package.yaml @@ -16,6 +16,7 @@ artifact: - ITEM: T40 record_sets: - record_set_id: census_stc.fy{year}.individual_income_tax_collections.us + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.us sheet_name: FY{year}-Flat-File @@ -51,6 +52,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.al + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.al sheet_name: FY{year}-Flat-File @@ -86,6 +88,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.az + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.az sheet_name: FY{year}-Flat-File @@ -121,6 +124,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.ar + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.ar sheet_name: FY{year}-Flat-File @@ -156,6 +160,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.ca + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.ca sheet_name: FY{year}-Flat-File @@ -191,6 +196,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.co + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.co sheet_name: FY{year}-Flat-File @@ -226,6 +232,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.ct + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.ct sheet_name: FY{year}-Flat-File @@ -261,6 +268,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.de + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.de sheet_name: FY{year}-Flat-File @@ -296,6 +304,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.dc + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.dc sheet_name: FY{year}-Flat-File @@ -331,6 +340,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.ga + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.ga sheet_name: FY{year}-Flat-File @@ -366,6 +376,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.hi + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.hi sheet_name: FY{year}-Flat-File @@ -401,6 +412,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.id + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.id sheet_name: FY{year}-Flat-File @@ -436,6 +448,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.il + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.il sheet_name: FY{year}-Flat-File @@ -471,6 +484,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.in + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.in sheet_name: FY{year}-Flat-File @@ -506,6 +520,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.ia + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.ia sheet_name: FY{year}-Flat-File @@ -541,6 +556,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.ks + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.ks sheet_name: FY{year}-Flat-File @@ -576,6 +592,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.ky + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.ky sheet_name: FY{year}-Flat-File @@ -611,6 +628,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.la + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.la sheet_name: FY{year}-Flat-File @@ -646,6 +664,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.me + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.me sheet_name: FY{year}-Flat-File @@ -681,6 +700,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.md + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.md sheet_name: FY{year}-Flat-File @@ -716,6 +736,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.ma + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.ma sheet_name: FY{year}-Flat-File @@ -751,6 +772,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.mi + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.mi sheet_name: FY{year}-Flat-File @@ -786,6 +808,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.mn + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.mn sheet_name: FY{year}-Flat-File @@ -821,6 +844,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.ms + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.ms sheet_name: FY{year}-Flat-File @@ -856,6 +880,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.mo + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.mo sheet_name: FY{year}-Flat-File @@ -891,6 +916,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.mt + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.mt sheet_name: FY{year}-Flat-File @@ -926,6 +952,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.ne + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.ne sheet_name: FY{year}-Flat-File @@ -961,6 +988,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.nh + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.nh sheet_name: FY{year}-Flat-File @@ -996,6 +1024,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.nj + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.nj sheet_name: FY{year}-Flat-File @@ -1031,6 +1060,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.nm + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.nm sheet_name: FY{year}-Flat-File @@ -1066,6 +1096,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.ny + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.ny sheet_name: FY{year}-Flat-File @@ -1101,6 +1132,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.nc + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.nc sheet_name: FY{year}-Flat-File @@ -1136,6 +1168,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.nd + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.nd sheet_name: FY{year}-Flat-File @@ -1171,6 +1204,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.oh + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.oh sheet_name: FY{year}-Flat-File @@ -1206,6 +1240,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.ok + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.ok sheet_name: FY{year}-Flat-File @@ -1241,6 +1276,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.or + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.or sheet_name: FY{year}-Flat-File @@ -1276,6 +1312,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.pa + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.pa sheet_name: FY{year}-Flat-File @@ -1311,6 +1348,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.ri + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.ri sheet_name: FY{year}-Flat-File @@ -1346,6 +1384,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.sc + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.sc sheet_name: FY{year}-Flat-File @@ -1381,6 +1420,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.tn + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.tn sheet_name: FY{year}-Flat-File @@ -1416,6 +1456,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.ut + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.ut sheet_name: FY{year}-Flat-File @@ -1451,6 +1492,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.vt + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.vt sheet_name: FY{year}-Flat-File @@ -1486,6 +1528,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.va + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.va sheet_name: FY{year}-Flat-File @@ -1521,6 +1564,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.wa + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.wa sheet_name: FY{year}-Flat-File @@ -1556,6 +1600,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.wv + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.wv sheet_name: FY{year}-Flat-File @@ -1591,6 +1636,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: census_stc.fy{year}.individual_income_tax_collections.wi + provenance_class: administrative record_set_spec_id: census_stc.individual_income_tax_collections.v1 source_record_id_prefix: census_stc.fy{year}.individual_income_tax_collections.wi sheet_name: FY{year}-Flat-File diff --git a/packages/cms_aca/effectuated_enrollment_2022/source_package.yaml b/packages/cms_aca/effectuated_enrollment_2022/source_package.yaml index 96740db..8aab23c 100644 --- a/packages/cms_aca/effectuated_enrollment_2022/source_package.yaml +++ b/packages/cms_aca/effectuated_enrollment_2022/source_package.yaml @@ -13,6 +13,7 @@ artifact: parser: xlsx_used_range record_sets: - record_set_id: cms_aca.effectuated_enrollment.{year}.state_marketplace + provenance_class: administrative record_set_spec_id: cms_aca.effectuated_enrollment_state_marketplace.v1 source_record_id_prefix: cms_aca.effectuated_enrollment.{year}.state_marketplace sheet_name: Full Year {year} diff --git a/packages/cms_aca/oep_state_level/source_package.yaml b/packages/cms_aca/oep_state_level/source_package.yaml index 28c6d62..b352c3c 100644 --- a/packages/cms_aca/oep_state_level/source_package.yaml +++ b/packages/cms_aca/oep_state_level/source_package.yaml @@ -15,6 +15,7 @@ artifact: sheet_name: 2024 OEP State-Level Public Use File.csv record_sets: - record_set_id: cms_aca.oep{year}.state_marketplace + provenance_class: administrative record_set_spec_id: cms_aca.oep_state_marketplace.v1 source_record_id_prefix: cms_aca.oep{year}.state_marketplace sheet_name: 2024 OEP State-Level Public Use File.csv diff --git a/packages/cms_aca/oep_state_level_2022/source_package.yaml b/packages/cms_aca/oep_state_level_2022/source_package.yaml index 6884d02..cb0bd5b 100644 --- a/packages/cms_aca/oep_state_level_2022/source_package.yaml +++ b/packages/cms_aca/oep_state_level_2022/source_package.yaml @@ -15,6 +15,7 @@ artifact: sheet_name: 2022 OEP State-Level Public Use File.csv record_sets: - record_set_id: cms_aca.oep{year}.state_marketplace_plan_selections + provenance_class: administrative record_set_spec_id: cms_aca.oep_state_marketplace_plan_selections.v1 source_record_id_prefix: cms_aca.oep{year}.state_marketplace sheet_name: 2022 OEP State-Level Public Use File.csv @@ -606,6 +607,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: cms_aca.oep{year}.state_marketplace_aptc + provenance_class: administrative record_set_spec_id: cms_aca.oep_state_marketplace_aptc.v1 source_record_id_prefix: cms_aca.oep{year}.state_marketplace sheet_name: 2022 OEP State-Level Public Use File.csv diff --git a/packages/cms_aca/oep_state_level_2025/source_package.yaml b/packages/cms_aca/oep_state_level_2025/source_package.yaml index 6c20845..b17f39a 100644 --- a/packages/cms_aca/oep_state_level_2025/source_package.yaml +++ b/packages/cms_aca/oep_state_level_2025/source_package.yaml @@ -15,6 +15,7 @@ artifact: sheet_name: 2025 OEP State-Level Public Use File.csv record_sets: - record_set_id: cms_aca.oep{year}.state_marketplace + provenance_class: administrative record_set_spec_id: cms_aca.oep_state_marketplace.v1 source_record_id_prefix: cms_aca.oep{year}.state_marketplace sheet_name: 2025 OEP State-Level Public Use File.csv diff --git a/packages/cms_medicaid/chip_monthly_enrollment_dataset/source_package.yaml b/packages/cms_medicaid/chip_monthly_enrollment_dataset/source_package.yaml index 5701c5a..7985d31 100644 --- a/packages/cms_medicaid/chip_monthly_enrollment_dataset/source_package.yaml +++ b/packages/cms_medicaid/chip_monthly_enrollment_dataset/source_package.yaml @@ -220,6 +220,7 @@ artifact: Final Report: Y record_sets: - record_set_id: cms_medicaid.month2025_12.state_enrollment + provenance_class: administrative record_set_spec_id: cms_medicaid.state_monthly_enrollment.v1 source_record_id_prefix: cms_medicaid.month2025_12.state_enrollment sheet_name: pi-dataset-april-2026-release.csv diff --git a/packages/cms_medicaid/chip_monthly_enrollment_december_2024/source_package.yaml b/packages/cms_medicaid/chip_monthly_enrollment_december_2024/source_package.yaml index fd21325..0a9fc1d 100644 --- a/packages/cms_medicaid/chip_monthly_enrollment_december_2024/source_package.yaml +++ b/packages/cms_medicaid/chip_monthly_enrollment_december_2024/source_package.yaml @@ -222,6 +222,7 @@ artifact: Final Report: Y record_sets: - record_set_id: cms_medicaid.month2024_12.state_enrollment + provenance_class: administrative record_set_spec_id: cms_medicaid.state_monthly_enrollment.v1 source_record_id_prefix: cms_medicaid.month2024_12.state_enrollment sheet_name: pi-dataset-april-2026-release.csv diff --git a/packages/cms_medicare/medicare_trustees_report_2025/source_package.yaml b/packages/cms_medicare/medicare_trustees_report_2025/source_package.yaml index ce52505..d0bf922 100644 --- a/packages/cms_medicare/medicare_trustees_report_2025/source_package.yaml +++ b/packages/cms_medicare/medicare_trustees_report_2025/source_package.yaml @@ -14,6 +14,7 @@ artifact: artifact_year: 2025 record_sets: - record_set_id: cms_medicare.cy2024.part_b_premium_income + provenance_class: administrative record_set_spec_id: cms_medicare.part_b_premium_income.v1 source_record_id_prefix: cms_medicare.cy2024.part_b_premium_income sheet_name: document_numbers diff --git a/packages/cms_nhe/historical_service_source/source_package.yaml b/packages/cms_nhe/historical_service_source/source_package.yaml index 78628e9..1c7c820 100644 --- a/packages/cms_nhe/historical_service_source/source_package.yaml +++ b/packages/cms_nhe/historical_service_source/source_package.yaml @@ -15,6 +15,7 @@ artifact: artifact_year: 2024 record_sets: - record_set_id: cms_nhe.cy{year}.medicaid_title_xix_expenditures + provenance_class: administrative record_set_spec_id: cms_nhe.medicaid_title_xix_expenditures.v1 source_record_id_prefix: cms_nhe.cy{year}.medicaid_title_xix_expenditures sheet_name: NHE24 diff --git a/packages/cms_nhe/table_24/source_package.yaml b/packages/cms_nhe/table_24/source_package.yaml index 0f9f694..ed234cd 100644 --- a/packages/cms_nhe/table_24/source_package.yaml +++ b/packages/cms_nhe/table_24/source_package.yaml @@ -15,6 +15,12 @@ artifact: artifact_year: 2024 record_sets: - record_set_id: cms_nhe.cy{year}.esi_employer_contribution_premiums + # NHE sponsor tables blend MEPS-IC survey estimates with administrative + # filings into a constructed account (same genus as BEA NIPA): model + # output, not source records. Note the standing tension with + # cms-nhe-historical-service-source (classified administrative for its + # Medicaid Title XIX line) — revisit both in the populace gate review. + provenance_class: model_output record_set_spec_id: cms_nhe.esi_employer_contribution_premiums.v1 source_record_id_prefix: cms_nhe.cy{year}.esi_employer_contribution_premiums sheet_name: Table 24 @@ -83,6 +89,12 @@ record_sets: value_scale: 1000000000 expected_cell_type: number - record_set_id: cms_nhe.cy{year}.esi_private_employer_contribution_premiums + # NHE sponsor tables blend MEPS-IC survey estimates with administrative + # filings into a constructed account (same genus as BEA NIPA): model + # output, not source records. Note the standing tension with + # cms-nhe-historical-service-source (classified administrative for its + # Medicaid Title XIX line) — revisit both in the populace gate review. + provenance_class: model_output record_set_spec_id: cms_nhe.esi_private_employer_contribution_premiums.v1 source_record_id_prefix: cms_nhe.cy{year}.esi_private_employer_contribution_premiums sheet_name: Table 24 diff --git a/packages/federal_reserve/z1_household_net_worth/source_package.yaml b/packages/federal_reserve/z1_household_net_worth/source_package.yaml index dd81058..7c47cf9 100644 --- a/packages/federal_reserve/z1_household_net_worth/source_package.yaml +++ b/packages/federal_reserve/z1_household_net_worth/source_package.yaml @@ -14,6 +14,11 @@ artifact: artifact_year: 2026 record_sets: - record_set_id: federal_reserve_z1.cy{year}.households_nonprofits_balance_sheet.net_worth + # Z.1 household net worth is an assembled national-account estimate (the + # household sector is partly residual-derived), the same genus as BEA NIPA + # aggregates — classified model_output for consistency with that principle, + # not administrative records. + provenance_class: model_output record_set_spec_id: federal_reserve_z1.households_nonprofits_balance_sheet.net_worth.v1 source_record_id_prefix: federal_reserve_z1.cy{year}.households_nonprofits_balance_sheet.net_worth sheet_name: table_1 diff --git a/packages/hhs_acf/tanf_caseload_2024/source_package.yaml b/packages/hhs_acf/tanf_caseload_2024/source_package.yaml index 9d500c8..d6ece7e 100644 --- a/packages/hhs_acf/tanf_caseload_2024/source_package.yaml +++ b/packages/hhs_acf/tanf_caseload_2024/source_package.yaml @@ -14,6 +14,7 @@ artifact: artifact_year: 2024 record_sets: - record_set_id: hhs_acf_tanf.fy2024.average_monthly_families.us + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.average_monthly_families.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.average_monthly_families.us sheet_name: FYCY2024-Families @@ -102,6 +103,7 @@ record_sets: aggregation: mean expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.average_monthly_families.state + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.average_monthly_families_state.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.average_monthly_families.state sheet_name: FYCY2024-Families @@ -693,6 +695,7 @@ record_sets: aggregation: mean expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.average_monthly_recipients.us + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.average_monthly_recipients.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.average_monthly_recipients.us sheet_name: FYCY2024-Recipients diff --git a/packages/hhs_acf/tanf_financial_2024/source_package.yaml b/packages/hhs_acf/tanf_financial_2024/source_package.yaml index acc912f..d002051 100644 --- a/packages/hhs_acf/tanf_financial_2024/source_package.yaml +++ b/packages/hhs_acf/tanf_financial_2024/source_package.yaml @@ -14,6 +14,7 @@ artifact: artifact_year: 2024 record_sets: - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.us + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.us sheet_name: A.1 Fed & State by Category @@ -53,6 +54,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.ak + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.ak sheet_name: Alaska @@ -92,6 +94,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.al + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.al sheet_name: Alabama @@ -131,6 +134,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.ar + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.ar sheet_name: Arkansas @@ -170,6 +174,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.az + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.az sheet_name: Arizona @@ -209,6 +214,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.ca + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.ca sheet_name: California @@ -248,6 +254,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.co + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.co sheet_name: Colorado @@ -287,6 +294,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.ct + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.ct sheet_name: Connecticut @@ -326,6 +334,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.dc + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.dc sheet_name: DC @@ -365,6 +374,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.de + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.de sheet_name: Delaware @@ -404,6 +414,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.fl + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.fl sheet_name: Florida @@ -443,6 +454,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.ga + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.ga sheet_name: Georgia @@ -482,6 +494,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.hi + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.hi sheet_name: Hawaii @@ -521,6 +534,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.ia + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.ia sheet_name: Iowa @@ -560,6 +574,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.id + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.id sheet_name: Idaho @@ -599,6 +614,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.il + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.il sheet_name: Illinois @@ -638,6 +654,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.in + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.in sheet_name: Indiana @@ -677,6 +694,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.ks + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.ks sheet_name: Kansas @@ -716,6 +734,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.ky + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.ky sheet_name: Kentucky @@ -755,6 +774,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.la + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.la sheet_name: Louisiana @@ -794,6 +814,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.ma + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.ma sheet_name: Massachusetts @@ -833,6 +854,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.md + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.md sheet_name: Maryland @@ -872,6 +894,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.me + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.me sheet_name: Maine @@ -911,6 +934,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.mi + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.mi sheet_name: Michigan @@ -950,6 +974,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.mn + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.mn sheet_name: Minnesota @@ -989,6 +1014,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.mo + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.mo sheet_name: Missouri @@ -1028,6 +1054,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.ms + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.ms sheet_name: Mississippi @@ -1067,6 +1094,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.mt + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.mt sheet_name: Montana @@ -1106,6 +1134,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.nc + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.nc sheet_name: North Carolina @@ -1145,6 +1174,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.nd + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.nd sheet_name: North Dakota @@ -1184,6 +1214,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.ne + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.ne sheet_name: Nebraska @@ -1223,6 +1254,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.nh + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.nh sheet_name: New Hampshire @@ -1262,6 +1294,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.nj + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.nj sheet_name: New Jersey @@ -1301,6 +1334,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.nm + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.nm sheet_name: New Mexico @@ -1340,6 +1374,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.nv + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.nv sheet_name: Nevada @@ -1379,6 +1414,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.ny + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.ny sheet_name: New York @@ -1418,6 +1454,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.oh + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.oh sheet_name: Ohio @@ -1457,6 +1494,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.ok + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.ok sheet_name: Oklahoma @@ -1496,6 +1534,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.or + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.or sheet_name: Oregon @@ -1535,6 +1574,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.pa + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.pa sheet_name: Pennsylvania @@ -1574,6 +1614,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.ri + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.ri sheet_name: Rhode Island @@ -1613,6 +1654,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.sc + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.sc sheet_name: South Carolina @@ -1652,6 +1694,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.sd + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.sd sheet_name: South Dakota @@ -1691,6 +1734,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.tn + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.tn sheet_name: Tennessee @@ -1730,6 +1774,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.tx + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.tx sheet_name: Texas @@ -1769,6 +1814,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.ut + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.ut sheet_name: Utah @@ -1808,6 +1854,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.va + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.va sheet_name: Virginia @@ -1847,6 +1894,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.vt + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.vt sheet_name: Vermont @@ -1886,6 +1934,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.wa + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.wa sheet_name: Washington @@ -1925,6 +1974,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.wi + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.wi sheet_name: Wisconsin @@ -1964,6 +2014,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.wv + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.wv sheet_name: West Virginia @@ -2003,6 +2054,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hhs_acf_tanf.fy2024.cash_assistance.wy + provenance_class: administrative record_set_spec_id: hhs_acf_tanf.cash_assistance.v1 source_record_id_prefix: hhs_acf_tanf.fy2024.cash_assistance.wy sheet_name: Wyoming diff --git a/packages/hhs_acf_liheap/fy2023_national_profile/source_package.yaml b/packages/hhs_acf_liheap/fy2023_national_profile/source_package.yaml index c0bd84d..1702487 100644 --- a/packages/hhs_acf_liheap/fy2023_national_profile/source_package.yaml +++ b/packages/hhs_acf_liheap/fy2023_national_profile/source_package.yaml @@ -13,6 +13,7 @@ artifact: parser: pdf_text_numbers record_sets: - record_set_id: hhs_acf_liheap.fy2023.national_profile + provenance_class: administrative record_set_spec_id: hhs_acf_liheap.national_profile.v1 source_record_id_prefix: hhs_acf_liheap.fy2023.national_profile sheet_name: document_numbers diff --git a/packages/hhs_acf_liheap/fy2024_national_profile/source_package.yaml b/packages/hhs_acf_liheap/fy2024_national_profile/source_package.yaml index cd64918..d7cf0e1 100644 --- a/packages/hhs_acf_liheap/fy2024_national_profile/source_package.yaml +++ b/packages/hhs_acf_liheap/fy2024_national_profile/source_package.yaml @@ -14,6 +14,7 @@ artifact: artifact_year: 2024 record_sets: - record_set_id: hhs_acf_liheap.fy2024.national_profile + provenance_class: administrative record_set_spec_id: hhs_acf_liheap.national_profile.v1 source_record_id_prefix: hhs_acf_liheap.fy2024.national_profile sheet_name: document_numbers diff --git a/packages/hmrc/vat_firm_sector_targets_2024_25/source_package.yaml b/packages/hmrc/vat_firm_sector_targets_2024_25/source_package.yaml index a69ef3b..2dec06c 100644 --- a/packages/hmrc/vat_firm_sector_targets_2024_25/source_package.yaml +++ b/packages/hmrc/vat_firm_sector_targets_2024_25/source_package.yaml @@ -17,6 +17,7 @@ artifact: sheet_name: hmrc_vat_firm_sector_targets_2024_25 record_sets: - record_set_id: hmrc.vat.fy2024_25.registered_trader_count.by_sic + provenance_class: administrative record_set_spec_id: hmrc.vat.registered_trader_count.by_sic.v1 source_record_id_prefix: hmrc.vat.fy2024_25.registered_trader_count.by_sic sheet_name: hmrc_vat_firm_sector_targets_2024_25 @@ -1558,6 +1559,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hmrc.vat.fy2024_25.net_liability.by_sic + provenance_class: administrative record_set_spec_id: hmrc.vat.net_liability.by_sic.v1 source_record_id_prefix: hmrc.vat.fy2024_25.net_liability.by_sic sheet_name: hmrc_vat_firm_sector_targets_2024_25 diff --git a/packages/hmrc/vat_firm_targets_2024_25/source_package.yaml b/packages/hmrc/vat_firm_targets_2024_25/source_package.yaml index 6d7f41b..21e9394 100644 --- a/packages/hmrc/vat_firm_targets_2024_25/source_package.yaml +++ b/packages/hmrc/vat_firm_targets_2024_25/source_package.yaml @@ -18,6 +18,7 @@ artifact: sheet_name: hmrc_vat_firm_targets_2024_25 record_sets: - record_set_id: hmrc.vat.fy2024_25.registered_trader_count.by_turnover_band + provenance_class: administrative record_set_spec_id: hmrc.vat.registered_trader_count.by_turnover_band.v1 source_record_id_prefix: hmrc.vat.fy2024_25.registered_trader_count.by_turnover_band sheet_name: hmrc_vat_firm_targets_2024_25 @@ -291,6 +292,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: hmrc.vat.fy2024_25.net_liability.by_turnover_band + provenance_class: administrative record_set_spec_id: hmrc.vat.net_liability.by_turnover_band.v1 source_record_id_prefix: hmrc.vat.fy2024_25.net_liability.by_turnover_band sheet_name: hmrc_vat_firm_targets_2024_25 diff --git a/packages/ici/fact_book_table_30/source_package.yaml b/packages/ici/fact_book_table_30/source_package.yaml index c3a6f6d..1cb4b5f 100644 --- a/packages/ici/fact_book_table_30/source_package.yaml +++ b/packages/ici/fact_book_table_30/source_package.yaml @@ -14,6 +14,8 @@ artifact: artifact_year: 2026 record_sets: - record_set_id: ici.cy2015.fact_book_table_30 + provenance_class: survey_aggregate + survey_instrument: ICI Monthly Long-Term Survey record_set_spec_id: ici.fact_book_table_30.paid_reinvested.v1 source_record_id_prefix: ici.cy2015.fact_book_table_30 sheet_name: final @@ -65,6 +67,8 @@ record_sets: aggregation: sum value_scale: 1000000 - record_set_id: ici.cy2021.fact_book_table_30 + provenance_class: survey_aggregate + survey_instrument: ICI Monthly Long-Term Survey record_set_spec_id: ici.fact_book_table_30.paid_reinvested.v1 source_record_id_prefix: ici.cy2021.fact_book_table_30 sheet_name: final @@ -104,6 +108,8 @@ record_sets: aggregation: sum value_scale: 1000000 - record_set_id: ici.cy2022.fact_book_table_30 + provenance_class: survey_aggregate + survey_instrument: ICI Monthly Long-Term Survey record_set_spec_id: ici.fact_book_table_30.paid_reinvested.v1 source_record_id_prefix: ici.cy2022.fact_book_table_30 sheet_name: final @@ -143,6 +149,8 @@ record_sets: aggregation: sum value_scale: 1000000 - record_set_id: ici.cy2023.fact_book_table_30 + provenance_class: survey_aggregate + survey_instrument: ICI Monthly Long-Term Survey record_set_spec_id: ici.fact_book_table_30.paid_reinvested.v1 source_record_id_prefix: ici.cy2023.fact_book_table_30 sheet_name: final @@ -182,6 +190,8 @@ record_sets: aggregation: sum value_scale: 1000000 - record_set_id: ici.cy2024.fact_book_table_30 + provenance_class: survey_aggregate + survey_instrument: ICI Monthly Long-Term Survey record_set_spec_id: ici.fact_book_table_30.paid_reinvested.v1 source_record_id_prefix: ici.cy2024.fact_book_table_30 sheet_name: final @@ -221,6 +231,8 @@ record_sets: aggregation: sum value_scale: 1000000 - record_set_id: ici.cy2025.fact_book_table_30 + provenance_class: survey_aggregate + survey_instrument: ICI Monthly Long-Term Survey record_set_spec_id: ici.fact_book_table_30.paid_reinvested.v1 source_record_id_prefix: ici.cy2025.fact_book_table_30 sheet_name: final diff --git a/packages/irs_soi/congressional_district_2022/source_package.yaml b/packages/irs_soi/congressional_district_2022/source_package.yaml index e5d1552..035698e 100644 --- a/packages/irs_soi/congressional_district_2022/source_package.yaml +++ b/packages/irs_soi/congressional_district_2022/source_package.yaml @@ -1456,6 +1456,7 @@ artifact: agi_stub: 0 record_sets: - record_set_id: irs_soi.ty{year}.congressional_district_2022.all_returns + provenance_class: administrative record_set_spec_id: irs_soi.congressional_district_2022.all_returns.v1 source_record_id_prefix: irs_soi.ty{year}.congressional_district_2022.all_returns sheet_name: incd2022 diff --git a/packages/irs_soi/filing_season_week47_2024/source_package.yaml b/packages/irs_soi/filing_season_week47_2024/source_package.yaml index bf00813..e792106 100644 --- a/packages/irs_soi/filing_season_week47_2024/source_package.yaml +++ b/packages/irs_soi/filing_season_week47_2024/source_package.yaml @@ -14,6 +14,7 @@ artifact: artifact_year: 2024 record_sets: - record_set_id: irs_soi.ty2024.filing_season_week47.eitc_all_returns.count + provenance_class: administrative record_set_spec_id: irs_soi.filing_season_week47.eitc_count.v1 source_record_id_prefix: irs_soi.ty2024.filing_season_week47.eitc_all_returns sheet_name: Filing Season @@ -59,6 +60,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: irs_soi.ty2024.filing_season_week47.eitc_all_returns.amount + provenance_class: administrative record_set_spec_id: irs_soi.filing_season_week47.eitc_amount.v1 source_record_id_prefix: irs_soi.ty2024.filing_season_week47.eitc_all_returns sheet_name: Filing Season @@ -105,6 +107,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: irs_soi.ty2024.filing_season_week47.eitc_by_agi.count + provenance_class: administrative record_set_spec_id: irs_soi.filing_season_week47.eitc_by_agi_count.v1 source_record_id_prefix: irs_soi.ty2024.filing_season_week47.eitc_by_agi sheet_name: Filing Season @@ -370,6 +373,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: irs_soi.ty2024.filing_season_week47.eitc_by_agi.amount + provenance_class: administrative record_set_spec_id: irs_soi.filing_season_week47.eitc_by_agi_amount.v1 source_record_id_prefix: irs_soi.ty2024.filing_season_week47.eitc_by_agi sheet_name: Filing Season diff --git a/packages/irs_soi/historic_table_2/source_package.yaml b/packages/irs_soi/historic_table_2/source_package.yaml index 8f8eb9a..9791e35 100644 --- a/packages/irs_soi/historic_table_2/source_package.yaml +++ b/packages/irs_soi/historic_table_2/source_package.yaml @@ -38,6 +38,7 @@ artifact: AGI_STUB: 10 record_sets: - record_set_id: irs_soi.ty2022.historic_table_2.us + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.us.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.us sheet_name: in55cmcsv diff --git a/packages/irs_soi/historic_table_2_state_agi_2022/source_package.yaml b/packages/irs_soi/historic_table_2_state_agi_2022/source_package.yaml index a195927..e7b730f 100644 --- a/packages/irs_soi/historic_table_2_state_agi_2022/source_package.yaml +++ b/packages/irs_soi/historic_table_2_state_agi_2022/source_package.yaml @@ -1036,6 +1036,7 @@ artifact: AGI_STUB: 10 record_sets: - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.al + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.al sheet_name: in55cmcsv @@ -1300,6 +1301,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.ak + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.ak sheet_name: in55cmcsv @@ -1564,6 +1566,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.az + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.az sheet_name: in55cmcsv @@ -1828,6 +1831,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.ar + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.ar sheet_name: in55cmcsv @@ -2092,6 +2096,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.ca + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.ca sheet_name: in55cmcsv @@ -2356,6 +2361,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.co + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.co sheet_name: in55cmcsv @@ -2620,6 +2626,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.ct + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.ct sheet_name: in55cmcsv @@ -2884,6 +2891,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.de + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.de sheet_name: in55cmcsv @@ -3148,6 +3156,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.dc + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.dc sheet_name: in55cmcsv @@ -3412,6 +3421,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.fl + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.fl sheet_name: in55cmcsv @@ -3676,6 +3686,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.ga + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.ga sheet_name: in55cmcsv @@ -3940,6 +3951,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.hi + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.hi sheet_name: in55cmcsv @@ -4204,6 +4216,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.id + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.id sheet_name: in55cmcsv @@ -4468,6 +4481,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.il + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.il sheet_name: in55cmcsv @@ -4732,6 +4746,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.in + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.in sheet_name: in55cmcsv @@ -4996,6 +5011,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.ia + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.ia sheet_name: in55cmcsv @@ -5260,6 +5276,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.ks + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.ks sheet_name: in55cmcsv @@ -5524,6 +5541,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.ky + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.ky sheet_name: in55cmcsv @@ -5788,6 +5806,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.la + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.la sheet_name: in55cmcsv @@ -6052,6 +6071,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.me + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.me sheet_name: in55cmcsv @@ -6316,6 +6336,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.md + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.md sheet_name: in55cmcsv @@ -6580,6 +6601,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.ma + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.ma sheet_name: in55cmcsv @@ -6844,6 +6866,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.mi + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.mi sheet_name: in55cmcsv @@ -7108,6 +7131,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.mn + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.mn sheet_name: in55cmcsv @@ -7372,6 +7396,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.ms + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.ms sheet_name: in55cmcsv @@ -7636,6 +7661,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.mo + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.mo sheet_name: in55cmcsv @@ -7900,6 +7926,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.mt + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.mt sheet_name: in55cmcsv @@ -8164,6 +8191,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.ne + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.ne sheet_name: in55cmcsv @@ -8428,6 +8456,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.nv + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.nv sheet_name: in55cmcsv @@ -8692,6 +8721,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.nh + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.nh sheet_name: in55cmcsv @@ -8956,6 +8986,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.nj + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.nj sheet_name: in55cmcsv @@ -9220,6 +9251,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.nm + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.nm sheet_name: in55cmcsv @@ -9484,6 +9516,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.ny + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.ny sheet_name: in55cmcsv @@ -9748,6 +9781,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.nc + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.nc sheet_name: in55cmcsv @@ -10012,6 +10046,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.nd + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.nd sheet_name: in55cmcsv @@ -10276,6 +10311,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.oh + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.oh sheet_name: in55cmcsv @@ -10540,6 +10576,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.ok + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.ok sheet_name: in55cmcsv @@ -10804,6 +10841,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.or + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.or sheet_name: in55cmcsv @@ -11068,6 +11106,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.pa + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.pa sheet_name: in55cmcsv @@ -11332,6 +11371,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.ri + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.ri sheet_name: in55cmcsv @@ -11596,6 +11636,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.sc + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.sc sheet_name: in55cmcsv @@ -11860,6 +11901,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.sd + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.sd sheet_name: in55cmcsv @@ -12124,6 +12166,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.tn + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.tn sheet_name: in55cmcsv @@ -12388,6 +12431,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.tx + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.tx sheet_name: in55cmcsv @@ -12652,6 +12696,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.ut + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.ut sheet_name: in55cmcsv @@ -12916,6 +12961,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.vt + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.vt sheet_name: in55cmcsv @@ -13180,6 +13226,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.va + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.va sheet_name: in55cmcsv @@ -13444,6 +13491,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.wa + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.wa sheet_name: in55cmcsv @@ -13708,6 +13756,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.wv + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.wv sheet_name: in55cmcsv @@ -13972,6 +14021,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.wi + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.wi sheet_name: in55cmcsv @@ -14236,6 +14286,7 @@ record_sets: aggregation: sum value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_agi.wy + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_agi_counts_and_amounts.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_agi.wy sheet_name: in55cmcsv diff --git a/packages/irs_soi/historic_table_2_state_broad_2022/source_package.yaml b/packages/irs_soi/historic_table_2_state_broad_2022/source_package.yaml index 36215d4..d459316 100644 --- a/packages/irs_soi/historic_table_2_state_broad_2022/source_package.yaml +++ b/packages/irs_soi/historic_table_2_state_broad_2022/source_package.yaml @@ -118,6 +118,7 @@ artifact: AGI_STUB: 0 record_sets: - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.al + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.al sheet_name: in55cmcsv @@ -772,6 +773,7 @@ record_sets: expected_column_header: A11070 value_scale: 1000 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.ak + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.ak sheet_name: in55cmcsv @@ -805,6 +807,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.az + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.az sheet_name: in55cmcsv @@ -838,6 +841,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.ar + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.ar sheet_name: in55cmcsv @@ -871,6 +875,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.ca + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.ca sheet_name: in55cmcsv @@ -904,6 +909,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.co + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.co sheet_name: in55cmcsv @@ -937,6 +943,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.ct + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.ct sheet_name: in55cmcsv @@ -970,6 +977,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.de + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.de sheet_name: in55cmcsv @@ -1003,6 +1011,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.dc + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.dc sheet_name: in55cmcsv @@ -1036,6 +1045,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.fl + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.fl sheet_name: in55cmcsv @@ -1069,6 +1079,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.ga + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.ga sheet_name: in55cmcsv @@ -1102,6 +1113,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.hi + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.hi sheet_name: in55cmcsv @@ -1135,6 +1147,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.id + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.id sheet_name: in55cmcsv @@ -1168,6 +1181,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.il + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.il sheet_name: in55cmcsv @@ -1201,6 +1215,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.in + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.in sheet_name: in55cmcsv @@ -1234,6 +1249,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.ia + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.ia sheet_name: in55cmcsv @@ -1267,6 +1283,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.ks + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.ks sheet_name: in55cmcsv @@ -1300,6 +1317,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.ky + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.ky sheet_name: in55cmcsv @@ -1333,6 +1351,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.la + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.la sheet_name: in55cmcsv @@ -1366,6 +1385,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.me + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.me sheet_name: in55cmcsv @@ -1399,6 +1419,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.md + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.md sheet_name: in55cmcsv @@ -1432,6 +1453,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.ma + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.ma sheet_name: in55cmcsv @@ -1465,6 +1487,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.mi + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.mi sheet_name: in55cmcsv @@ -1498,6 +1521,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.mn + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.mn sheet_name: in55cmcsv @@ -1531,6 +1555,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.ms + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.ms sheet_name: in55cmcsv @@ -1564,6 +1589,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.mo + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.mo sheet_name: in55cmcsv @@ -1597,6 +1623,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.mt + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.mt sheet_name: in55cmcsv @@ -1630,6 +1657,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.ne + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.ne sheet_name: in55cmcsv @@ -1663,6 +1691,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.nv + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.nv sheet_name: in55cmcsv @@ -1696,6 +1725,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.nh + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.nh sheet_name: in55cmcsv @@ -1729,6 +1759,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.nj + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.nj sheet_name: in55cmcsv @@ -1762,6 +1793,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.nm + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.nm sheet_name: in55cmcsv @@ -1795,6 +1827,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.ny + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.ny sheet_name: in55cmcsv @@ -1828,6 +1861,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.nc + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.nc sheet_name: in55cmcsv @@ -1861,6 +1895,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.nd + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.nd sheet_name: in55cmcsv @@ -1894,6 +1929,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.oh + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.oh sheet_name: in55cmcsv @@ -1927,6 +1963,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.ok + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.ok sheet_name: in55cmcsv @@ -1960,6 +1997,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.or + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.or sheet_name: in55cmcsv @@ -1993,6 +2031,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.pa + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.pa sheet_name: in55cmcsv @@ -2026,6 +2065,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.ri + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.ri sheet_name: in55cmcsv @@ -2059,6 +2099,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.sc + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.sc sheet_name: in55cmcsv @@ -2092,6 +2133,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.sd + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.sd sheet_name: in55cmcsv @@ -2125,6 +2167,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.tn + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.tn sheet_name: in55cmcsv @@ -2158,6 +2201,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.tx + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.tx sheet_name: in55cmcsv @@ -2191,6 +2235,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.ut + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.ut sheet_name: in55cmcsv @@ -2224,6 +2269,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.vt + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.vt sheet_name: in55cmcsv @@ -2257,6 +2303,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.va + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.va sheet_name: in55cmcsv @@ -2290,6 +2337,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.wa + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.wa sheet_name: in55cmcsv @@ -2323,6 +2371,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.wv + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.wv sheet_name: in55cmcsv @@ -2356,6 +2405,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.wi + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.wi sheet_name: in55cmcsv @@ -2389,6 +2439,7 @@ record_sets: table_record_kind: total measures: *id001 - record_set_id: irs_soi.ty2022.historic_table_2.state_broad.wy + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_broad_totals.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_broad.wy sheet_name: in55cmcsv diff --git a/packages/irs_soi/historic_table_2_state_eitc_2022/source_package.yaml b/packages/irs_soi/historic_table_2_state_eitc_2022/source_package.yaml index 474eea8..d760214 100644 --- a/packages/irs_soi/historic_table_2_state_eitc_2022/source_package.yaml +++ b/packages/irs_soi/historic_table_2_state_eitc_2022/source_package.yaml @@ -118,6 +118,7 @@ artifact: AGI_STUB: 0 record_sets: - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.al + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.al sheet_name: in55cmcsv @@ -330,6 +331,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.ak + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.ak sheet_name: in55cmcsv @@ -542,6 +544,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.az + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.az sheet_name: in55cmcsv @@ -754,6 +757,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.ar + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.ar sheet_name: in55cmcsv @@ -966,6 +970,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.ca + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.ca sheet_name: in55cmcsv @@ -1178,6 +1183,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.co + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.co sheet_name: in55cmcsv @@ -1390,6 +1396,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.ct + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.ct sheet_name: in55cmcsv @@ -1602,6 +1609,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.de + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.de sheet_name: in55cmcsv @@ -1814,6 +1822,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.dc + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.dc sheet_name: in55cmcsv @@ -2026,6 +2035,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.fl + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.fl sheet_name: in55cmcsv @@ -2238,6 +2248,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.ga + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.ga sheet_name: in55cmcsv @@ -2450,6 +2461,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.hi + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.hi sheet_name: in55cmcsv @@ -2662,6 +2674,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.id + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.id sheet_name: in55cmcsv @@ -2874,6 +2887,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.il + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.il sheet_name: in55cmcsv @@ -3086,6 +3100,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.in + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.in sheet_name: in55cmcsv @@ -3298,6 +3313,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.ia + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.ia sheet_name: in55cmcsv @@ -3510,6 +3526,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.ks + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.ks sheet_name: in55cmcsv @@ -3722,6 +3739,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.ky + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.ky sheet_name: in55cmcsv @@ -3934,6 +3952,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.la + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.la sheet_name: in55cmcsv @@ -4146,6 +4165,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.me + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.me sheet_name: in55cmcsv @@ -4358,6 +4378,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.md + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.md sheet_name: in55cmcsv @@ -4570,6 +4591,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.ma + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.ma sheet_name: in55cmcsv @@ -4782,6 +4804,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.mi + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.mi sheet_name: in55cmcsv @@ -4994,6 +5017,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.mn + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.mn sheet_name: in55cmcsv @@ -5206,6 +5230,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.ms + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.ms sheet_name: in55cmcsv @@ -5418,6 +5443,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.mo + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.mo sheet_name: in55cmcsv @@ -5630,6 +5656,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.mt + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.mt sheet_name: in55cmcsv @@ -5842,6 +5869,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.ne + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.ne sheet_name: in55cmcsv @@ -6054,6 +6082,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.nv + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.nv sheet_name: in55cmcsv @@ -6266,6 +6295,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.nh + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.nh sheet_name: in55cmcsv @@ -6478,6 +6508,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.nj + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.nj sheet_name: in55cmcsv @@ -6690,6 +6721,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.nm + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.nm sheet_name: in55cmcsv @@ -6902,6 +6934,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.ny + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.ny sheet_name: in55cmcsv @@ -7114,6 +7147,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.nc + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.nc sheet_name: in55cmcsv @@ -7326,6 +7360,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.nd + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.nd sheet_name: in55cmcsv @@ -7538,6 +7573,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.oh + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.oh sheet_name: in55cmcsv @@ -7750,6 +7786,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.ok + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.ok sheet_name: in55cmcsv @@ -7962,6 +7999,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.or + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.or sheet_name: in55cmcsv @@ -8174,6 +8212,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.pa + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.pa sheet_name: in55cmcsv @@ -8386,6 +8425,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.ri + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.ri sheet_name: in55cmcsv @@ -8598,6 +8638,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.sc + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.sc sheet_name: in55cmcsv @@ -8810,6 +8851,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.sd + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.sd sheet_name: in55cmcsv @@ -9022,6 +9064,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.tn + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.tn sheet_name: in55cmcsv @@ -9234,6 +9277,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.tx + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.tx sheet_name: in55cmcsv @@ -9446,6 +9490,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.ut + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.ut sheet_name: in55cmcsv @@ -9658,6 +9703,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.vt + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.vt sheet_name: in55cmcsv @@ -9870,6 +9916,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.va + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.va sheet_name: in55cmcsv @@ -10082,6 +10129,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.wa + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.wa sheet_name: in55cmcsv @@ -10294,6 +10342,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.wv + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.wv sheet_name: in55cmcsv @@ -10506,6 +10555,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.wi + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.wi sheet_name: in55cmcsv @@ -10718,6 +10768,7 @@ record_sets: unit: count label: EITC qualifying children - record_set_id: irs_soi.ty2022.historic_table_2.state_eitc.wy + provenance_class: administrative record_set_spec_id: irs_soi.historic_table_2.state_eitc.v1 source_record_id_prefix: irs_soi.ty2022.historic_table_2.state_eitc.wy sheet_name: in55cmcsv diff --git a/packages/irs_soi/ira_roth_contributions_2022/source_package.yaml b/packages/irs_soi/ira_roth_contributions_2022/source_package.yaml index 4a619d1..23391f3 100644 --- a/packages/irs_soi/ira_roth_contributions_2022/source_package.yaml +++ b/packages/irs_soi/ira_roth_contributions_2022/source_package.yaml @@ -14,6 +14,7 @@ artifact: artifact_year: 2022 record_sets: - record_set_id: irs_soi.ty{year}.roth_ira_contributions.all_taxpayers + provenance_class: administrative record_set_spec_id: irs_soi.roth_ira_contributions.all_taxpayers.v1 source_record_id_prefix: irs_soi.ty{year}.roth_ira_contributions.all_taxpayers sheet_name: Sheet1 diff --git a/packages/irs_soi/ira_traditional_contributions_2022/source_package.yaml b/packages/irs_soi/ira_traditional_contributions_2022/source_package.yaml index e856b05..fd5cba8 100644 --- a/packages/irs_soi/ira_traditional_contributions_2022/source_package.yaml +++ b/packages/irs_soi/ira_traditional_contributions_2022/source_package.yaml @@ -14,6 +14,7 @@ artifact: artifact_year: 2022 record_sets: - record_set_id: irs_soi.ty{year}.traditional_ira_contributions.all_taxpayers + provenance_class: administrative record_set_spec_id: irs_soi.traditional_ira_contributions.all_taxpayers.v1 source_record_id_prefix: irs_soi.ty{year}.traditional_ira_contributions.all_taxpayers sheet_name: Sheet1 diff --git a/packages/irs_soi/state_2022/source_package.yaml b/packages/irs_soi/state_2022/source_package.yaml index 583904e..1d078bd 100644 --- a/packages/irs_soi/state_2022/source_package.yaml +++ b/packages/irs_soi/state_2022/source_package.yaml @@ -14,6 +14,7 @@ artifact: artifact_year: 2022 record_sets: - record_set_id: irs_soi.ty{year}.state_2022.us.return_count + provenance_class: administrative record_set_spec_id: irs_soi.state_2022.us.return_count.v1 source_record_id_prefix: irs_soi.ty{year}.state_2022.us.return_count sheet_name: Sheet1 @@ -56,6 +57,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: irs_soi.ty{year}.state_2022.us.adjusted_gross_income + provenance_class: administrative record_set_spec_id: irs_soi.state_2022.us.adjusted_gross_income.v1 source_record_id_prefix: irs_soi.ty{year}.state_2022.us.adjusted_gross_income sheet_name: Sheet1 @@ -110,6 +112,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: irs_soi.ty{year}.state_2022.us.eitc_three_or_more_children_returns + provenance_class: administrative record_set_spec_id: irs_soi.state_2022.us.eitc_three_or_more_children_returns.v1 source_record_id_prefix: irs_soi.ty{year}.state_2022.us.eitc_three_or_more_children_returns sheet_name: Sheet1 @@ -161,6 +164,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: irs_soi.ty{year}.state_2022.us.eitc_three_or_more_children_amount + provenance_class: administrative record_set_spec_id: irs_soi.state_2022.us.eitc_three_or_more_children_amount.v1 source_record_id_prefix: irs_soi.ty{year}.state_2022.us.eitc_three_or_more_children_amount sheet_name: Sheet1 diff --git a/packages/irs_soi/table_1_1/source_package.yaml b/packages/irs_soi/table_1_1/source_package.yaml index 1a8b62a..e498a83 100644 --- a/packages/irs_soi/table_1_1/source_package.yaml +++ b/packages/irs_soi/table_1_1/source_package.yaml @@ -12,6 +12,7 @@ artifact: extraction_method: xlrd whole-workbook used-range cell parse record_sets: - record_set_id: irs_soi.ty{year}.table_1_1 + provenance_class: administrative record_set_spec_id: irs_soi.table_1_1.v1 source_record_id_prefix: irs_soi.ty{year}.table_1_1 sheet_name: TBL11 diff --git a/packages/irs_soi/table_1_2/source_package.yaml b/packages/irs_soi/table_1_2/source_package.yaml index e15aad1..d253a95 100644 --- a/packages/irs_soi/table_1_2/source_package.yaml +++ b/packages/irs_soi/table_1_2/source_package.yaml @@ -12,6 +12,7 @@ artifact: extraction_method: xlrd whole-workbook used-range cell parse record_sets: - record_set_id: irs_soi.ty{year}.table_1_2.all_returns + provenance_class: administrative record_set_spec_id: irs_soi.table_1_2.all_returns.v1 source_record_id_prefix: irs_soi.ty{year}.table_1_2.all_returns sheet_name: TBL12 diff --git a/packages/irs_soi/table_1_4/source_package.yaml b/packages/irs_soi/table_1_4/source_package.yaml index c067ff7..33dea99 100644 --- a/packages/irs_soi/table_1_4/source_package.yaml +++ b/packages/irs_soi/table_1_4/source_package.yaml @@ -12,6 +12,7 @@ artifact: extraction_method: xlrd whole-workbook used-range cell parse record_sets: - record_set_id: irs_soi.ty{year}.table_1_4 + provenance_class: administrative record_set_spec_id: irs_soi.table_1_4.total_wages.v1 source_record_id_prefix: irs_soi.ty{year}.table_1_4 sheet_name: TBL14 diff --git a/packages/irs_soi/table_2_1/source_package.yaml b/packages/irs_soi/table_2_1/source_package.yaml index 32468d7..a10377a 100644 --- a/packages/irs_soi/table_2_1/source_package.yaml +++ b/packages/irs_soi/table_2_1/source_package.yaml @@ -12,6 +12,7 @@ artifact: extraction_method: xlrd whole-workbook used-range cell parse record_sets: - record_set_id: irs_soi.ty{year}.table_2_1.itemized_all_returns + provenance_class: administrative record_set_spec_id: irs_soi.table_2_1.itemized_all_returns.v1 source_record_id_prefix: irs_soi.ty{year}.table_2_1.itemized_all_returns sheet_name: TBL21 diff --git a/packages/irs_soi/table_2_5/source_package.yaml b/packages/irs_soi/table_2_5/source_package.yaml index 211ee5e..e0ad20a 100644 --- a/packages/irs_soi/table_2_5/source_package.yaml +++ b/packages/irs_soi/table_2_5/source_package.yaml @@ -12,6 +12,7 @@ artifact: extraction_method: xlrd whole-workbook used-range cell parse record_sets: - record_set_id: irs_soi.ty{year}.table_2_5.eitc_all_returns + provenance_class: administrative record_set_spec_id: irs_soi.table_2_5.eitc_all_returns.v1 source_record_id_prefix: irs_soi.ty{year}.table_2_5.eitc_all_returns sheet_name: TBL25 diff --git a/packages/irs_soi/table_2_5_eitc_agi_children_2022/source_package.yaml b/packages/irs_soi/table_2_5_eitc_agi_children_2022/source_package.yaml index d2424b1..37d4bdf 100644 --- a/packages/irs_soi/table_2_5_eitc_agi_children_2022/source_package.yaml +++ b/packages/irs_soi/table_2_5_eitc_agi_children_2022/source_package.yaml @@ -13,6 +13,7 @@ artifact: extraction_method: xlrd whole-workbook used-range cell parse record_sets: - record_set_id: irs_soi.ty2022.table_2_5.eitc_by_agi_children.no_qualifying_children + provenance_class: administrative record_set_spec_id: irs_soi.table_2_5.eitc_by_agi_children.no_qualifying_children.v1 source_record_id_prefix: irs_soi.ty2022.table_2_5.eitc_by_agi_children.no_qualifying_children sheet_name: TBL25 @@ -1148,6 +1149,7 @@ record_sets: unit: count label: Earned income credit qualifying children - record_set_id: irs_soi.ty2022.table_2_5.eitc_by_agi_children.one_qualifying_child + provenance_class: administrative record_set_spec_id: irs_soi.table_2_5.eitc_by_agi_children.one_qualifying_child.v1 source_record_id_prefix: irs_soi.ty2022.table_2_5.eitc_by_agi_children.one_qualifying_child sheet_name: TBL25 @@ -2283,6 +2285,7 @@ record_sets: unit: count label: Earned income credit qualifying children - record_set_id: irs_soi.ty2022.table_2_5.eitc_by_agi_children.two_qualifying_children + provenance_class: administrative record_set_spec_id: irs_soi.table_2_5.eitc_by_agi_children.two_qualifying_children.v1 source_record_id_prefix: irs_soi.ty2022.table_2_5.eitc_by_agi_children.two_qualifying_children sheet_name: TBL25 @@ -3418,6 +3421,7 @@ record_sets: unit: count label: Earned income credit qualifying children - record_set_id: irs_soi.ty2022.table_2_5.eitc_by_agi_children.three_or_more_qualifying_children + provenance_class: administrative record_set_spec_id: irs_soi.table_2_5.eitc_by_agi_children.three_or_more_qualifying_children.v1 source_record_id_prefix: irs_soi.ty2022.table_2_5.eitc_by_agi_children.three_or_more_qualifying_children sheet_name: TBL25 diff --git a/packages/irs_soi/table_2_5_eitc_agi_children_2023/source_package.yaml b/packages/irs_soi/table_2_5_eitc_agi_children_2023/source_package.yaml index e36ebcf..0026379 100644 --- a/packages/irs_soi/table_2_5_eitc_agi_children_2023/source_package.yaml +++ b/packages/irs_soi/table_2_5_eitc_agi_children_2023/source_package.yaml @@ -13,6 +13,7 @@ artifact: extraction_method: xlrd whole-workbook used-range cell parse record_sets: - record_set_id: irs_soi.ty2023.table_2_5.eitc_by_agi_children.no_qualifying_children + provenance_class: administrative record_set_spec_id: irs_soi.table_2_5.eitc_by_agi_children.no_qualifying_children.v1 source_record_id_prefix: irs_soi.ty2023.table_2_5.eitc_by_agi_children.no_qualifying_children sheet_name: TBL25 @@ -1148,6 +1149,7 @@ record_sets: unit: count label: Earned income credit qualifying children - record_set_id: irs_soi.ty2023.table_2_5.eitc_by_agi_children.one_qualifying_child + provenance_class: administrative record_set_spec_id: irs_soi.table_2_5.eitc_by_agi_children.one_qualifying_child.v1 source_record_id_prefix: irs_soi.ty2023.table_2_5.eitc_by_agi_children.one_qualifying_child sheet_name: TBL25 @@ -2283,6 +2285,7 @@ record_sets: unit: count label: Earned income credit qualifying children - record_set_id: irs_soi.ty2023.table_2_5.eitc_by_agi_children.two_qualifying_children + provenance_class: administrative record_set_spec_id: irs_soi.table_2_5.eitc_by_agi_children.two_qualifying_children.v1 source_record_id_prefix: irs_soi.ty2023.table_2_5.eitc_by_agi_children.two_qualifying_children sheet_name: TBL25 @@ -3418,6 +3421,7 @@ record_sets: unit: count label: Earned income credit qualifying children - record_set_id: irs_soi.ty2023.table_2_5.eitc_by_agi_children.three_or_more_qualifying_children + provenance_class: administrative record_set_spec_id: irs_soi.table_2_5.eitc_by_agi_children.three_or_more_qualifying_children.v1 source_record_id_prefix: irs_soi.ty2023.table_2_5.eitc_by_agi_children.three_or_more_qualifying_children sheet_name: TBL25 diff --git a/packages/irs_soi/table_4_3/source_package.yaml b/packages/irs_soi/table_4_3/source_package.yaml index 47790ca..75f443e 100644 --- a/packages/irs_soi/table_4_3/source_package.yaml +++ b/packages/irs_soi/table_4_3/source_package.yaml @@ -12,6 +12,7 @@ artifact: extraction_method: xlrd whole-workbook used-range cell parse record_sets: - record_set_id: irs_soi.ty{year}.table_4_3.all_returns_excluding_dependents + provenance_class: administrative record_set_spec_id: irs_soi.table_4_3.all_returns_excluding_dependents.v1 source_record_id_prefix: irs_soi.ty{year}.table_4_3.all_returns_excluding_dependents sheet_name: Tab43 diff --git a/packages/irs_soi/w2_statistics_2020/source_package.yaml b/packages/irs_soi/w2_statistics_2020/source_package.yaml index b1d2723..1326b48 100644 --- a/packages/irs_soi/w2_statistics_2020/source_package.yaml +++ b/packages/irs_soi/w2_statistics_2020/source_package.yaml @@ -14,6 +14,7 @@ artifact: artifact_year: 2020 record_sets: - record_set_id: irs_soi.ty{year}.form_w2_social_security_tips + provenance_class: administrative record_set_spec_id: irs_soi.form_w2_social_security_tips.v1 source_record_id_prefix: irs_soi.ty{year}.form_w2_social_security_tips sheet_name: Table 4.B @@ -89,6 +90,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: irs_soi.ty{year}.form_w2_401k_elective_deferrals + provenance_class: administrative record_set_spec_id: irs_soi.form_w2_401k_elective_deferrals.v1 source_record_id_prefix: irs_soi.ty{year}.form_w2_401k_elective_deferrals sheet_name: Table 4.B @@ -129,6 +131,7 @@ record_sets: value_scale: 1000 expected_cell_type: number - record_set_id: irs_soi.ty{year}.form_w2_designated_roth_401k_contributions + provenance_class: administrative record_set_spec_id: irs_soi.form_w2_designated_roth_401k_contributions.v1 source_record_id_prefix: irs_soi.ty{year}.form_w2_designated_roth_401k_contributions sheet_name: Table 4.B diff --git a/packages/jct/tax_expenditures_2024/source_package.yaml b/packages/jct/tax_expenditures_2024/source_package.yaml index 64b93e3..cf32e78 100644 --- a/packages/jct/tax_expenditures_2024/source_package.yaml +++ b/packages/jct/tax_expenditures_2024/source_package.yaml @@ -14,6 +14,7 @@ artifact: sheet_name: jct_tax_expenditures_2024 record_sets: - record_set_id: jct.tax_expenditures.cy2024 + provenance_class: model_output record_set_spec_id: jct.individual_tax_expenditure_revenue_loss.v1 source_record_id_prefix: jct.tax_expenditures.cy2024 sheet_name: jct_tax_expenditures_2024 diff --git a/packages/jrc/euromod_be_baseline_statistics_2025/source_package.yaml b/packages/jrc/euromod_be_baseline_statistics_2025/source_package.yaml index 3b855e2..a2feb96 100644 --- a/packages/jrc/euromod_be_baseline_statistics_2025/source_package.yaml +++ b/packages/jrc/euromod_be_baseline_statistics_2025/source_package.yaml @@ -16,6 +16,7 @@ artifact: sheet_name: jrc_euromod_be_baseline_statistics_2025 record_sets: - record_set_id: jrc.euromod_be.cy2023.macrovalidation.amounts + provenance_class: model_output record_set_spec_id: jrc.euromod_be.macrovalidation.amounts.v1 source_record_id_prefix: jrc.euromod_be.cy2023.macrovalidation.amounts sheet_name: jrc_euromod_be_baseline_statistics_2025 @@ -194,6 +195,7 @@ record_sets: value_scale: 1000000 expected_cell_type: number - record_set_id: jrc.euromod_be.cy2023.macrovalidation.ratios + provenance_class: model_output record_set_spec_id: jrc.euromod_be.macrovalidation.ratios.v1 source_record_id_prefix: jrc.euromod_be.cy2023.macrovalidation.ratios sheet_name: jrc_euromod_be_baseline_statistics_2025 @@ -300,6 +302,7 @@ record_sets: value_scale: 1 expected_cell_type: number - record_set_id: jrc.euromod_be.cy2022.distribution.percent_values + provenance_class: model_output record_set_spec_id: jrc.euromod_be.distribution.percent_values.v1 source_record_id_prefix: jrc.euromod_be.cy2022.distribution.percent_values sheet_name: jrc_euromod_be_baseline_statistics_2025 @@ -406,6 +409,7 @@ record_sets: value_scale: 1 expected_cell_type: number - record_set_id: jrc.euromod_be.cy2022.distribution.ratios + provenance_class: model_output record_set_spec_id: jrc.euromod_be.distribution.ratios.v1 source_record_id_prefix: jrc.euromod_be.cy2022.distribution.ratios sheet_name: jrc_euromod_be_baseline_statistics_2025 diff --git a/packages/kff/marketplace_effectuated_enrollment/source_package.yaml b/packages/kff/marketplace_effectuated_enrollment/source_package.yaml index a994a81..ac201ba 100644 --- a/packages/kff/marketplace_effectuated_enrollment/source_package.yaml +++ b/packages/kff/marketplace_effectuated_enrollment/source_package.yaml @@ -119,6 +119,7 @@ artifact: Geography: Wyoming record_sets: - record_set_id: kff.marketplace_effectuated_enrollment.2024.state + provenance_class: administrative record_set_spec_id: kff.marketplace_effectuated_enrollment_state.v1 source_record_id_prefix: kff.marketplace_effectuated_enrollment.2024.state sheet_name: indicator diff --git a/packages/nbb/national_accounts_household_disposable_income_2024/source_package.yaml b/packages/nbb/national_accounts_household_disposable_income_2024/source_package.yaml index eeaa3b3..f5ad589 100644 --- a/packages/nbb/national_accounts_household_disposable_income_2024/source_package.yaml +++ b/packages/nbb/national_accounts_household_disposable_income_2024/source_package.yaml @@ -15,6 +15,7 @@ artifact: sheet_name: nbb_household_disposable_income_2024 record_sets: - record_set_id: nbb.national_accounts.cy2024.household_disposable_income.country + provenance_class: model_output record_set_spec_id: nbb.national_accounts.household_disposable_income.country.v1 source_record_id_prefix: nbb.national_accounts.cy2024.household_disposable_income.country sheet_name: nbb_household_disposable_income_2024 diff --git a/packages/onem_rva/unemployment_2024/source_package.yaml b/packages/onem_rva/unemployment_2024/source_package.yaml index 76de86a..8d2e3db 100644 --- a/packages/onem_rva/unemployment_2024/source_package.yaml +++ b/packages/onem_rva/unemployment_2024/source_package.yaml @@ -16,6 +16,7 @@ artifact: sheet_name: onem_rva_unemployment_2024 record_sets: - record_set_id: onem_rva.unemployment.cy2024.complete_unemployment.country + provenance_class: administrative record_set_spec_id: onem_rva.unemployment.complete_unemployment.country.v1 source_record_id_prefix: onem_rva.unemployment.cy2024.complete_unemployment.country sheet_name: onem_rva_unemployment_2024 diff --git a/packages/ons/uk_business_firm_sector_targets_2025/source_package.yaml b/packages/ons/uk_business_firm_sector_targets_2025/source_package.yaml index 3231477..7ea0538 100644 --- a/packages/ons/uk_business_firm_sector_targets_2025/source_package.yaml +++ b/packages/ons/uk_business_firm_sector_targets_2025/source_package.yaml @@ -17,6 +17,7 @@ artifact: sheet_name: ons_uk_business_firm_sector_targets_2025 record_sets: - record_set_id: ons.uk_business.cy2025.enterprise_count.by_sic_turnover_band + provenance_class: administrative record_set_spec_id: ons.uk_business.enterprise_count.by_sic_turnover_band.v1 source_record_id_prefix: ons.uk_business.cy2025.enterprise_count.by_sic_turnover_band sheet_name: ons_uk_business_firm_sector_targets_2025 @@ -21554,6 +21555,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: ons.uk_business.cy2025.enterprise_count.by_sic_employment_band + provenance_class: administrative record_set_spec_id: ons.uk_business.enterprise_count.by_sic_employment_band.v1 source_record_id_prefix: ons.uk_business.cy2025.enterprise_count.by_sic_employment_band sheet_name: ons_uk_business_firm_sector_targets_2025 diff --git a/packages/ons/uk_business_firm_targets_2025/source_package.yaml b/packages/ons/uk_business_firm_targets_2025/source_package.yaml index cd2a023..84d403e 100644 --- a/packages/ons/uk_business_firm_targets_2025/source_package.yaml +++ b/packages/ons/uk_business_firm_targets_2025/source_package.yaml @@ -17,6 +17,7 @@ artifact: sheet_name: ons_uk_business_firm_targets_2025 record_sets: - record_set_id: ons.uk_business.cy2025.enterprise_count.by_turnover_band + provenance_class: administrative record_set_spec_id: ons.uk_business.enterprise_count.by_turnover_band.v1 source_record_id_prefix: ons.uk_business.cy2025.enterprise_count.by_turnover_band sheet_name: ons_uk_business_firm_targets_2025 @@ -235,6 +236,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: ons.uk_business.cy2025.enterprise_count.by_employment_band + provenance_class: administrative record_set_spec_id: ons.uk_business.enterprise_count.by_employment_band.v1 source_record_id_prefix: ons.uk_business.cy2025.enterprise_count.by_employment_band sheet_name: ons_uk_business_firm_targets_2025 diff --git a/packages/onss/contributions_2024/source_package.yaml b/packages/onss/contributions_2024/source_package.yaml index 6d12678..6649197 100644 --- a/packages/onss/contributions_2024/source_package.yaml +++ b/packages/onss/contributions_2024/source_package.yaml @@ -15,6 +15,7 @@ artifact: sheet_name: onss_worker_contributions_2024 record_sets: - record_set_id: onss.contributions.cy2024.worker_personal_contributions.country + provenance_class: administrative record_set_spec_id: onss.contributions.worker_personal_contributions.country.v1 source_record_id_prefix: onss.contributions.cy2024.worker_personal_contributions.country sheet_name: onss_worker_contributions_2024 diff --git a/packages/opgroeien/groeipakket_caseload_2025/source_package.yaml b/packages/opgroeien/groeipakket_caseload_2025/source_package.yaml index 641b927..6ede7b8 100644 --- a/packages/opgroeien/groeipakket_caseload_2025/source_package.yaml +++ b/packages/opgroeien/groeipakket_caseload_2025/source_package.yaml @@ -15,6 +15,7 @@ artifact: sheet_name: opgroeien_groeipakket_caseload_2025 record_sets: - record_set_id: opgroeien.groeipakket.cy2025.child_caseload.by_component + provenance_class: administrative record_set_spec_id: opgroeien.groeipakket.child_caseload.by_component.v1 source_record_id_prefix: opgroeien.groeipakket.cy2025.child_caseload sheet_name: opgroeien_groeipakket_caseload_2025 @@ -136,6 +137,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: opgroeien.groeipakket.cy2025.family_caseload.by_component + provenance_class: administrative record_set_spec_id: opgroeien.groeipakket.family_caseload.by_component.v1 source_record_id_prefix: opgroeien.groeipakket.cy2025.family_caseload sheet_name: opgroeien_groeipakket_caseload_2025 diff --git a/packages/sfpd/legal_pension_caseload_2025/source_package.yaml b/packages/sfpd/legal_pension_caseload_2025/source_package.yaml index 13bab6d..c48b3b5 100644 --- a/packages/sfpd/legal_pension_caseload_2025/source_package.yaml +++ b/packages/sfpd/legal_pension_caseload_2025/source_package.yaml @@ -15,6 +15,7 @@ artifact: sheet_name: sfpd_legal_pension_caseload_2025 record_sets: - record_set_id: sfpd.legal_pension.cy2025.recipients.by_scheme + provenance_class: administrative record_set_spec_id: sfpd.legal_pension.recipients.by_scheme.v1 source_record_id_prefix: sfpd.legal_pension.cy2025.recipients sheet_name: sfpd_legal_pension_caseload_2025 diff --git a/packages/spf_finances/pit_2023/source_package.yaml b/packages/spf_finances/pit_2023/source_package.yaml index 19964fc..7a21879 100644 --- a/packages/spf_finances/pit_2023/source_package.yaml +++ b/packages/spf_finances/pit_2023/source_package.yaml @@ -15,6 +15,7 @@ artifact: sheet_name: spf_finances_pit_country_2023 record_sets: - record_set_id: spf_finances.pit.tax_year2023.tax_before_withholding.country + provenance_class: administrative record_set_spec_id: spf_finances.pit.tax_before_withholding.country.v1 source_record_id_prefix: spf_finances.pit.tax_year2023.tax_before_withholding.country sheet_name: spf_finances_pit_country_2023 diff --git a/packages/ssa/annual_statistical_supplement_2025/source_package.yaml b/packages/ssa/annual_statistical_supplement_2025/source_package.yaml index 1ce3a72..579b6bd 100644 --- a/packages/ssa/annual_statistical_supplement_2025/source_package.yaml +++ b/packages/ssa/annual_statistical_supplement_2025/source_package.yaml @@ -28,6 +28,7 @@ artifact: period: 2024 record_sets: - record_set_id: ssa_supplement.cy2024.oasdi_ssi_payments + provenance_class: administrative record_set_spec_id: ssa_supplement.oasdi_ssi_payments.v1 source_record_id_prefix: ssa_supplement.cy2024.oasdi_ssi_payments sheet_name: ssa_oasdi_ssi_2024 diff --git a/packages/ssa/ssi_table_7b1_2024/source_package.yaml b/packages/ssa/ssi_table_7b1_2024/source_package.yaml index 0a75b7b..c2a3218 100644 --- a/packages/ssa/ssi_table_7b1_2024/source_package.yaml +++ b/packages/ssa/ssi_table_7b1_2024/source_package.yaml @@ -4550,6 +4550,7 @@ record_sets: label: SSI category table_record_kind: detail record_set_id: ssa_supplement.cy2024.ssi_recipients.by_area_category + provenance_class: administrative record_set_spec_id: ssa_supplement.ssi_recipients.by_area_category.v1 source_record_id_prefix: ssa_supplement.cy2024.ssi_recipients.by_area_category measures: @@ -9106,6 +9107,7 @@ record_sets: label: SSI category table_record_kind: detail record_set_id: ssa_supplement.cy2024.ssi_payments.by_area_category + provenance_class: administrative record_set_spec_id: ssa_supplement.ssi_payments.by_area_category.v1 source_record_id_prefix: ssa_supplement.cy2024.ssi_payments.by_area_category measures: diff --git a/packages/statbel/fiscal_income_2023_nis_2025/source_package.yaml b/packages/statbel/fiscal_income_2023_nis_2025/source_package.yaml index 78fd942..2ad8d68 100644 --- a/packages/statbel/fiscal_income_2023_nis_2025/source_package.yaml +++ b/packages/statbel/fiscal_income_2023_nis_2025/source_package.yaml @@ -17,6 +17,7 @@ artifact: sheet_name: statbel_fiscal_income_commune_2023_nis_2025 record_sets: - record_set_id: statbel.fiscal_income.tax_year2023.taxable_income.by_commune_nis2025 + provenance_class: administrative record_set_spec_id: statbel.fiscal_income.taxable_income.by_commune_nis2025.v1 source_record_id_prefix: statbel.fiscal_income.tax_year2023.taxable_income.by_commune_nis2025 sheet_name: statbel_fiscal_income_commune_2023_nis_2025 diff --git a/packages/statbel/population_structure_2026/source_package.yaml b/packages/statbel/population_structure_2026/source_package.yaml index 9e1bb1a..b59c240 100644 --- a/packages/statbel/population_structure_2026/source_package.yaml +++ b/packages/statbel/population_structure_2026/source_package.yaml @@ -17,6 +17,7 @@ artifact: sheet_name: statbel_population_structure_nuts1_2026 record_sets: - record_set_id: statbel.population_structure.cy2026.people.by_nuts1_age_sex + provenance_class: census record_set_spec_id: statbel.population_structure.people.by_nuts1_age_sex.v1 source_record_id_prefix: statbel.population_structure.cy2026.people.by_nuts1_age_sex sheet_name: statbel_population_structure_nuts1_2026 diff --git a/packages/usda_snap/fy69_to_current/source_package.yaml b/packages/usda_snap/fy69_to_current/source_package.yaml index b67da33..8a775ae 100644 --- a/packages/usda_snap/fy69_to_current/source_package.yaml +++ b/packages/usda_snap/fy69_to_current/source_package.yaml @@ -15,6 +15,7 @@ artifact: artifact_year: 2024 record_sets: - record_set_id: usda_snap.fy2024.national_average_monthly_households + provenance_class: administrative record_set_spec_id: usda_snap.national_average_monthly_households.v1 source_record_id_prefix: usda_snap.fy2024.national_average_monthly_households sheet_name: US Summary @@ -58,6 +59,7 @@ record_sets: aggregation: mean expected_cell_type: number - record_set_id: usda_snap.fy2024.national_average_monthly_persons + provenance_class: administrative record_set_spec_id: usda_snap.national_average_monthly_persons.v1 source_record_id_prefix: usda_snap.fy2024.national_average_monthly_persons sheet_name: US Summary @@ -112,6 +114,7 @@ record_sets: aggregation: mean expected_cell_type: number - record_set_id: usda_snap.fy2024.national_benefits + provenance_class: administrative record_set_spec_id: usda_snap.national_benefits.v1 source_record_id_prefix: usda_snap.fy2024.national_benefits sheet_name: US Summary @@ -155,6 +158,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: usda_snap.fy2024.state_average_monthly_households.nero + provenance_class: administrative record_set_spec_id: usda_snap.state_average_monthly_households.v1 source_record_id_prefix: usda_snap.fy2024.state_average_monthly_households.nero sheet_name: NERO @@ -342,6 +346,7 @@ record_sets: aggregation: mean expected_cell_type: number - record_set_id: usda_snap.fy2024.state_average_monthly_persons.nero + provenance_class: administrative record_set_spec_id: usda_snap.state_average_monthly_persons.v1 source_record_id_prefix: usda_snap.fy2024.state_average_monthly_persons.nero sheet_name: NERO @@ -540,6 +545,7 @@ record_sets: aggregation: mean expected_cell_type: number - record_set_id: usda_snap.fy2024.state_benefits.nero + provenance_class: administrative record_set_spec_id: usda_snap.state_benefits.v1 source_record_id_prefix: usda_snap.fy2024.state_benefits.nero sheet_name: NERO @@ -727,6 +733,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: usda_snap.fy2024.state_average_monthly_households.maro + provenance_class: administrative record_set_spec_id: usda_snap.state_average_monthly_households.v1 source_record_id_prefix: usda_snap.fy2024.state_average_monthly_households.maro sheet_name: MARO @@ -894,6 +901,7 @@ record_sets: aggregation: mean expected_cell_type: number - record_set_id: usda_snap.fy2024.state_average_monthly_persons.maro + provenance_class: administrative record_set_spec_id: usda_snap.state_average_monthly_persons.v1 source_record_id_prefix: usda_snap.fy2024.state_average_monthly_persons.maro sheet_name: MARO @@ -1072,6 +1080,7 @@ record_sets: aggregation: mean expected_cell_type: number - record_set_id: usda_snap.fy2024.state_benefits.maro + provenance_class: administrative record_set_spec_id: usda_snap.state_benefits.v1 source_record_id_prefix: usda_snap.fy2024.state_benefits.maro sheet_name: MARO @@ -1239,6 +1248,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: usda_snap.fy2024.state_average_monthly_households.sero + provenance_class: administrative record_set_spec_id: usda_snap.state_average_monthly_households.v1 source_record_id_prefix: usda_snap.fy2024.state_average_monthly_households.sero sheet_name: SERO @@ -1426,6 +1436,7 @@ record_sets: aggregation: mean expected_cell_type: number - record_set_id: usda_snap.fy2024.state_average_monthly_persons.sero + provenance_class: administrative record_set_spec_id: usda_snap.state_average_monthly_persons.v1 source_record_id_prefix: usda_snap.fy2024.state_average_monthly_persons.sero sheet_name: SERO @@ -1624,6 +1635,7 @@ record_sets: aggregation: mean expected_cell_type: number - record_set_id: usda_snap.fy2024.state_benefits.sero + provenance_class: administrative record_set_spec_id: usda_snap.state_benefits.v1 source_record_id_prefix: usda_snap.fy2024.state_benefits.sero sheet_name: SERO @@ -1811,6 +1823,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: usda_snap.fy2024.state_average_monthly_households.mwro + provenance_class: administrative record_set_spec_id: usda_snap.state_average_monthly_households.v1 source_record_id_prefix: usda_snap.fy2024.state_average_monthly_households.mwro sheet_name: MWRO @@ -1978,6 +1991,7 @@ record_sets: aggregation: mean expected_cell_type: number - record_set_id: usda_snap.fy2024.state_average_monthly_persons.mwro + provenance_class: administrative record_set_spec_id: usda_snap.state_average_monthly_persons.v1 source_record_id_prefix: usda_snap.fy2024.state_average_monthly_persons.mwro sheet_name: MWRO @@ -2156,6 +2170,7 @@ record_sets: aggregation: mean expected_cell_type: number - record_set_id: usda_snap.fy2024.state_benefits.mwro + provenance_class: administrative record_set_spec_id: usda_snap.state_benefits.v1 source_record_id_prefix: usda_snap.fy2024.state_benefits.mwro sheet_name: MWRO @@ -2323,6 +2338,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: usda_snap.fy2024.state_average_monthly_households.swro + provenance_class: administrative record_set_spec_id: usda_snap.state_average_monthly_households.v1 source_record_id_prefix: usda_snap.fy2024.state_average_monthly_households.swro sheet_name: SWRO @@ -2490,6 +2506,7 @@ record_sets: aggregation: mean expected_cell_type: number - record_set_id: usda_snap.fy2024.state_average_monthly_persons.swro + provenance_class: administrative record_set_spec_id: usda_snap.state_average_monthly_persons.v1 source_record_id_prefix: usda_snap.fy2024.state_average_monthly_persons.swro sheet_name: SWRO @@ -2668,6 +2685,7 @@ record_sets: aggregation: mean expected_cell_type: number - record_set_id: usda_snap.fy2024.state_benefits.swro + provenance_class: administrative record_set_spec_id: usda_snap.state_benefits.v1 source_record_id_prefix: usda_snap.fy2024.state_benefits.swro sheet_name: SWRO @@ -2835,6 +2853,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: usda_snap.fy2024.state_average_monthly_households.mpro + provenance_class: administrative record_set_spec_id: usda_snap.state_average_monthly_households.v1 source_record_id_prefix: usda_snap.fy2024.state_average_monthly_households.mpro sheet_name: MPRO @@ -3022,6 +3041,7 @@ record_sets: aggregation: mean expected_cell_type: number - record_set_id: usda_snap.fy2024.state_average_monthly_persons.mpro + provenance_class: administrative record_set_spec_id: usda_snap.state_average_monthly_persons.v1 source_record_id_prefix: usda_snap.fy2024.state_average_monthly_persons.mpro sheet_name: MPRO @@ -3220,6 +3240,7 @@ record_sets: aggregation: mean expected_cell_type: number - record_set_id: usda_snap.fy2024.state_benefits.mpro + provenance_class: administrative record_set_spec_id: usda_snap.state_benefits.v1 source_record_id_prefix: usda_snap.fy2024.state_benefits.mpro sheet_name: MPRO @@ -3407,6 +3428,7 @@ record_sets: aggregation: sum expected_cell_type: number - record_set_id: usda_snap.fy2024.state_average_monthly_households.wro + provenance_class: administrative record_set_spec_id: usda_snap.state_average_monthly_households.v1 source_record_id_prefix: usda_snap.fy2024.state_average_monthly_households.wro sheet_name: WRO @@ -3594,6 +3616,7 @@ record_sets: aggregation: mean expected_cell_type: number - record_set_id: usda_snap.fy2024.state_average_monthly_persons.wro + provenance_class: administrative record_set_spec_id: usda_snap.state_average_monthly_persons.v1 source_record_id_prefix: usda_snap.fy2024.state_average_monthly_persons.wro sheet_name: WRO @@ -3792,6 +3815,7 @@ record_sets: aggregation: mean expected_cell_type: number - record_set_id: usda_snap.fy2024.state_benefits.wro + provenance_class: administrative record_set_spec_id: usda_snap.state_benefits.v1 source_record_id_prefix: usda_snap.fy2024.state_benefits.wro sheet_name: WRO diff --git a/policyengine_ledger/__init__.py b/policyengine_ledger/__init__.py index 8195344..2cdaa19 100644 --- a/policyengine_ledger/__init__.py +++ b/policyengine_ledger/__init__.py @@ -6,6 +6,7 @@ from ledger.core import ( ALLOWED_ASSERTIONS, + ALLOWED_PROVENANCE_CLASSES, DEFAULT_ASSERTION, AggregateConstraint, AggregateFact, @@ -38,6 +39,7 @@ __all__ = [ "ALLOWED_ASSERTIONS", + "ALLOWED_PROVENANCE_CLASSES", "DEFAULT_ASSERTION", "AggregateConstraint", "AggregateFact", diff --git a/policyengine_ledger/consumer.py b/policyengine_ledger/consumer.py index 9511451..c9c783c 100644 --- a/policyengine_ledger/consumer.py +++ b/policyengine_ledger/consumer.py @@ -28,7 +28,11 @@ from typing import Any from ledger.consumer_contract import _hash_key -from ledger.core import ALLOWED_ASSERTIONS, DEFAULT_ASSERTION +from ledger.core import ( + ALLOWED_ASSERTIONS, + ALLOWED_PROVENANCE_CLASSES, + DEFAULT_ASSERTION, +) from policyengine_ledger.schema import ( CONSUMER_FACT_SCHEMA_SHA256, validate_consumer_fact_row, @@ -61,6 +65,7 @@ "domain", "entity", "assertion", + "provenance_class", } @@ -180,6 +185,7 @@ class ResolvedTarget: value_type: str unit: str | None assertion: str + provenance_class: str fact_period: dict[str, Any] requested_period: dict[str, Any] aggregate_fact_key: str @@ -192,6 +198,7 @@ class ResolvedTarget: lineage: dict[str, Any] alignment: dict[str, Any] | None = None label: str | None = None + survey_instrument: str | None = None def to_dict(self) -> dict[str, Any]: """Return a JSON-serializable resolved row.""" @@ -203,6 +210,8 @@ def to_dict(self) -> dict[str, Any]: payload.pop("alignment", None) if payload.get("label") is None: payload.pop("label", None) + if payload.get("survey_instrument") is None: + payload.pop("survey_instrument", None) return payload @@ -383,6 +392,7 @@ def _resolved_target( value_type=row["value_type"], unit=observed_measure.get("unit"), assertion=row["assertion"], + provenance_class=row["provenance_class"], fact_period=dict(row["period"]), requested_period=requested_period, aggregate_fact_key=row["aggregate_fact_key"], @@ -395,6 +405,7 @@ def _resolved_target( lineage=dict(row.get("lineage", {})), alignment=alignment.to_dict() if alignment is not None else None, label=row.get("label"), + survey_instrument=row.get("survey_instrument"), ) @@ -472,6 +483,8 @@ def _selector_value(row: Mapping[str, Any], key: str) -> Any: return row.get("entity", {}).get("name") if key == "assertion": return row.get("assertion") + if key == "provenance_class": + return row.get("provenance_class") raise KeyError(key) @@ -879,6 +892,7 @@ def _load_consumer_rows( _assert_finite_numbers(row, line_number=line_number, path=path) if validate_schema: validate_consumer_fact_row(row, line_number, path) + _validate_consumer_row_provenance(row, line_number=line_number, path=path) assertion = row.setdefault("assertion", DEFAULT_ASSERTION) if assertion not in ALLOWED_ASSERTIONS: raise ValueError( @@ -904,6 +918,39 @@ def _load_consumer_rows( return rows +def _validate_consumer_row_provenance( + row: Mapping[str, Any], + *, + line_number: int, + path: Path, +) -> None: + if "provenance_class" not in row: + raise ValueError( + f"Row {line_number} of {path} is missing required provenance_class." + ) + provenance_class = row["provenance_class"] + if type(provenance_class) is not str or ( + provenance_class not in ALLOWED_PROVENANCE_CLASSES + ): + raise ValueError( + f"Row {line_number} of {path} has unsupported provenance_class " + f"{provenance_class!r}." + ) + has_survey_instrument = "survey_instrument" in row + survey_instrument = row.get("survey_instrument") + if provenance_class == "survey_aggregate": + if type(survey_instrument) is not str or not survey_instrument.strip(): + raise ValueError( + f"Row {line_number} of {path} needs a non-empty " + "survey_instrument for survey_aggregate provenance." + ) + elif has_survey_instrument: + raise ValueError( + f"Row {line_number} of {path} has survey_instrument outside " + "survey_aggregate provenance." + ) + + def _load_profiles( profile_ids: Sequence[str], profile_paths: Sequence[str | Path], diff --git a/policyengine_ledger/schemas/consumer_fact.v1.schema.json b/policyengine_ledger/schemas/consumer_fact.v1.schema.json index 37a29e1..6a699c0 100644 --- a/policyengine_ledger/schemas/consumer_fact.v1.schema.json +++ b/policyengine_ledger/schemas/consumer_fact.v1.schema.json @@ -17,6 +17,7 @@ "value", "value_type", "assertion", + "provenance_class", "period", "geography", "entity", @@ -27,6 +28,32 @@ "source", "lineage" ], + "allOf": [ + { + "if": { + "properties": { + "provenance_class": { + "const": "survey_aggregate" + } + }, + "required": [ + "provenance_class" + ] + }, + "then": { + "required": [ + "survey_instrument" + ] + }, + "else": { + "not": { + "required": [ + "survey_instrument" + ] + } + } + } + ], "properties": { "schema_version": { "const": "ledger.consumer_fact.v1" @@ -339,6 +366,21 @@ ], "description": "Who asserted the value: a publisher-measured outcome (observation) or the publisher's own forward-looking estimate (source_projection). PolicyEngine-computed values are never consumer facts." }, + "provenance_class": { + "type": "string", + "enum": [ + "administrative", + "census", + "survey_aggregate", + "model_output" + ], + "description": "Publisher measurement basis. Consumers can gate calibration inputs on this required, closed classification." + }, + "survey_instrument": { + "type": "string", + "pattern": ".*\\S.*", + "description": "Survey name required exactly when provenance_class is survey_aggregate." + }, "period_coverage": { "type": "object", "additionalProperties": false, diff --git a/tests/test_ledger_bundle.py b/tests/test_ledger_bundle.py index 387338b..38f8dee 100644 --- a/tests/test_ledger_bundle.py +++ b/tests/test_ledger_bundle.py @@ -37,6 +37,21 @@ def test_build_bundle_writes_merged_consumer_contract(tmp_path): "warning_count": 1, } assert len(rows) == 39215 + assert {row["provenance_class"] for row in rows} <= { + "administrative", + "census", + "model_output", + "survey_aggregate", + } + assert all( + ( + isinstance(row.get("survey_instrument"), str) + and row["survey_instrument"].strip() + ) + if row["provenance_class"] == "survey_aggregate" + else "survey_instrument" not in row + for row in rows + ) 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"] == 59 diff --git a/tests/test_ledger_concepts.py b/tests/test_ledger_concepts.py index 2fd8ee9..73eb0f4 100644 --- a/tests/test_ledger_concepts.py +++ b/tests/test_ledger_concepts.py @@ -50,6 +50,7 @@ def _credit_fact(**overrides): legal_vintage="tax_year_2023", ), aggregation=Aggregation(method="sum"), + provenance_class="administrative", filters={"filing_status": "all"}, source=SourceProvenance( source_name="irs_soi", diff --git a/tests/test_ledger_consumer.py b/tests/test_ledger_consumer.py index 3de7016..96b3c3c 100644 --- a/tests/test_ledger_consumer.py +++ b/tests/test_ledger_consumer.py @@ -50,6 +50,8 @@ def _fact( measure_id="agi", concept="irs_soi.adjusted_gross_income", assertion="observation", + provenance_class="administrative", + survey_instrument=None, ): return AggregateFact( value=value, @@ -62,6 +64,8 @@ def _fact( entity=EntityDimension(name="tax_unit", role="filing_unit"), measure=Measure(concept=concept, unit="usd"), aggregation=Aggregation(method="sum"), + provenance_class=provenance_class, + survey_instrument=survey_instrument, source=SourceProvenance( source_name=source_name, source_table="Table T", @@ -308,6 +312,7 @@ def _write_artifact_inputs(tmp_path): "ledger_selector": { "source_name": "irs_soi", "source_measure_id": "agi", + "provenance_class": "administrative", }, "measurement": {"entity": "tax_unit", "concept": "us.agi"}, "bindings": { @@ -339,6 +344,10 @@ def test_artifact_build_load_resolve_round_trip(tmp_path): {"type": "tax_year", "value": 2022}, ) assert resolution.resolved[0].value == 110 + assert resolution.resolved[0].provenance_class == "administrative" + assert resolution.resolved[0].survey_instrument is None + assert resolution.resolved[0].to_dict()["provenance_class"] == "administrative" + assert "survey_instrument" not in resolution.resolved[0].to_dict() with pytest.raises(PeriodContractError): artifact.resolve("test_profile", {"type": "tax_year", "value": 2025}) @@ -378,6 +387,82 @@ def test_artifact_load_rejects_tampered_facts(tmp_path): load_consumer_artifact(out_dir) +def _apply_provenance_case(row, case): + if case == "missing": + row.pop("provenance_class") + elif case == "unknown": + row["provenance_class"] = "unknown" + elif case == "wrong_type": + row["provenance_class"] = 1 + elif case == "survey_missing_instrument": + row["provenance_class"] = "survey_aggregate" + elif case == "survey_blank_instrument": + row["provenance_class"] = "survey_aggregate" + row["survey_instrument"] = " " + elif case == "misplaced_instrument": + row["survey_instrument"] = "ACS 1-year" + else: # pragma: no cover - test authoring guard + raise AssertionError(case) + + +@pytest.mark.parametrize( + ("case", "message"), + [ + ("missing", "provenance_class"), + ("unknown", "provenance_class"), + ("wrong_type", "provenance_class"), + ("survey_missing_instrument", "survey_instrument"), + ("survey_blank_instrument", "survey_instrument"), + ("misplaced_instrument", "survey_instrument"), + ], +) +def test_artifact_build_rejects_malformed_provenance(tmp_path, case, message): + facts_path, profile_path = _write_artifact_inputs(tmp_path) + rows = facts_path.read_text().splitlines() + first = json.loads(rows[0]) + _apply_provenance_case(first, case) + rows[0] = json.dumps(first, sort_keys=True) + facts_path.write_text("\n".join(rows) + "\n") + + with pytest.raises(ValueError, match=message): + build_consumer_artifact( + tmp_path / "artifact", + facts_path=facts_path, + profile_paths=[profile_path], + ) + + +@pytest.mark.parametrize( + ("case", "message"), + [ + ("missing", "provenance_class"), + ("unknown", "provenance_class"), + ("misplaced_instrument", "survey_instrument"), + ], +) +def test_artifact_load_rejects_malformed_provenance(tmp_path, case, message): + facts_path, profile_path = _write_artifact_inputs(tmp_path) + out_dir = tmp_path / "artifact" + build_consumer_artifact( + out_dir, + facts_path=facts_path, + profile_paths=[profile_path], + ) + facts_file = out_dir / "consumer_facts.jsonl" + rows = facts_file.read_text().splitlines() + first = json.loads(rows[0]) + _apply_provenance_case(first, case) + rows[0] = json.dumps(first, sort_keys=True) + facts_file.write_text("\n".join(rows) + "\n") + manifest_path = out_dir / "manifest.json" + manifest = json.loads(manifest_path.read_text()) + manifest["facts_sha256"] = hashlib.sha256(facts_file.read_bytes()).hexdigest() + manifest_path.write_text(json.dumps(manifest, sort_keys=True, indent=2) + "\n") + + with pytest.raises(ValueError, match=message): + load_consumer_artifact(out_dir) + + def test_artifact_requires_profiles(tmp_path): facts_path, _ = _write_artifact_inputs(tmp_path) with pytest.raises(ValueError, match="at least one target profile"): @@ -408,6 +493,7 @@ def _ons_firm_crosstab_fact(*, record_set_id, dimensions, value, cell): ) return AggregateFact( value=value, + provenance_class="administrative", period=PeriodDimension(type="calendar_year", value=2025), geography=GeographyDimension(level="country", id="K02000001", vintage="2025"), entity=EntityDimension(name="firm"), diff --git a/tests/test_ledger_consumer_contract.py b/tests/test_ledger_consumer_contract.py index e32e500..48bc0f1 100644 --- a/tests/test_ledger_consumer_contract.py +++ b/tests/test_ledger_consumer_contract.py @@ -66,6 +66,28 @@ def _assert_matches_schema(row: Any, schema: dict[str, Any], root: dict[str, Any raise AssertionError(f"Unsupported test schema ref: {ref}") schema = root["$defs"][ref.removeprefix("#/$defs/")] + if "not" in schema: + try: + _assert_matches_schema(row, schema["not"], root) + except AssertionError: + pass + else: + raise AssertionError(f"{row!r} matches forbidden schema {schema['not']!r}") + + for clause in schema.get("allOf", ()): + condition = clause.get("if") + if condition is None: + _assert_matches_schema(row, clause, root) + continue + try: + _assert_matches_schema(row, condition, root) + except AssertionError: + branch = clause.get("else") + else: + branch = clause.get("then") + if branch is not None: + _assert_matches_schema(row, branch, root) + expected_type = schema.get("type") if expected_type is not None: allowed_types = ( @@ -128,6 +150,8 @@ def test_consumer_fact_row_exposes_ledger_and_lineage_keys(): assert row["semantic_fact_key"].startswith("ledger.semantic_fact.v2:") assert row["legacy_fact_key"].startswith("ledger.fact.v1:") assert row["source_release_key"].startswith("ledger.source_release.v2:") + assert row["provenance_class"] == "administrative" + assert "survey_instrument" not in row assert row["observed_measure_key"].startswith("ledger.observed_measure.v2:") assert row["concept_alignment"]["canonical_concept"] == ( "us:statutes/26/62#adjusted_gross_income" @@ -428,6 +452,56 @@ def test_checked_in_consumer_fact_sample_matches_schema(): _assert_matches_schema(row, schema, schema) +def test_consumer_schema_requires_conditional_provenance_fields(): + schema = json.loads(CONSUMER_FACT_SCHEMA_PATH.read_text()) + row = consumer_fact_row(_soi_agi_fact()) + + missing = dict(row) + missing.pop("provenance_class") + with pytest.raises(AssertionError, match="provenance_class"): + _assert_matches_schema(missing, schema, schema) + + unknown = {**row, "provenance_class": "unknown"} + with pytest.raises(AssertionError, match="not in enum"): + _assert_matches_schema(unknown, schema, schema) + + survey_missing_instrument = {**row, "provenance_class": "survey_aggregate"} + with pytest.raises(AssertionError, match="survey_instrument"): + _assert_matches_schema(survey_missing_instrument, schema, schema) + + misplaced = {**row, "survey_instrument": "ACS 1-year"} + with pytest.raises(AssertionError, match="forbidden schema"): + _assert_matches_schema(misplaced, schema, schema) + + survey = { + **row, + "provenance_class": "survey_aggregate", + "survey_instrument": "ACS 1-year", + } + _assert_matches_schema(survey, schema, schema) + + +@pytest.mark.parametrize( + "fact", + [ + replace(_soi_agi_fact(), provenance_class="unknown"), + replace(_soi_agi_fact(), provenance_class="survey_aggregate"), + replace(_soi_agi_fact(), survey_instrument="ACS 1-year"), + ], +) +def test_consumer_export_rejects_malformed_provenance(fact): + report = validate_consumer_fact_contract([fact]) + + assert not report.valid + assert report.errors[0].code in { + "malformed_provenance_class", + "missing_survey_instrument", + "misplaced_survey_instrument", + } + with pytest.raises(ValueError, match="invalid Ledger consumer-contract facts"): + consumer_fact_row(fact) + + def test_checked_in_consumer_fact_sample_matches_exporter(): expected = [consumer_fact_row(fact) for fact in build_soi_table_1_1_facts(2023)[:3]] diff --git a/tests/test_ledger_core.py b/tests/test_ledger_core.py index e8c2af2..a4a227e 100644 --- a/tests/test_ledger_core.py +++ b/tests/test_ledger_core.py @@ -31,6 +31,7 @@ def _fact(**overrides): entity=EntityDimension(name="tax_unit", role="filing_unit"), measure=Measure(concept="irs_soi.adjusted_gross_income", unit="usd"), aggregation=Aggregation(method="sum"), + provenance_class="administrative", filters={"filing_status": "all"}, source=SourceProvenance( source_name="irs_soi", diff --git a/tests/test_ledger_database.py b/tests/test_ledger_database.py index 75ad8e6..b0a3703 100644 --- a/tests/test_ledger_database.py +++ b/tests/test_ledger_database.py @@ -73,6 +73,8 @@ def test_build_ledger_db_writes_aggregate_fact_constraints_and_lineage(tmp_path) assert all_returns["entity_name"] == "tax_unit" assert all_returns["value_numeric"] == 160_602_107 assert all_returns["domain"] == "all_individual_income_tax_returns" + assert all_returns["provenance_class"] == "administrative" + assert all_returns["survey_instrument"] is None assert artifact["raw_r2_bucket"] == "ledger-raw" assert artifact["raw_r2_key"].startswith("raw/irs_soi/soi-table-1-1/2023/") assert artifact["raw_r2_uri"].startswith("r2://ledger-raw/") diff --git a/tests/test_ledger_facts_only.py b/tests/test_ledger_facts_only.py index 07845d0..6b1f5e5 100644 --- a/tests/test_ledger_facts_only.py +++ b/tests/test_ledger_facts_only.py @@ -21,6 +21,7 @@ ) from ledger.core import ( ALLOWED_ASSERTIONS, + ALLOWED_PROVENANCE_CLASSES, AggregateFact, Aggregation, EntityDimension, @@ -100,6 +101,64 @@ def test_fact_counts_report_assertions(): assert counts["by_assertion"] == {"observation": 1, "source_projection": 1} +def test_provenance_class_vocabulary_is_closed_and_type_strict(): + assert ALLOWED_PROVENANCE_CLASSES == { + "administrative", + "census", + "model_output", + "survey_aggregate", + } + fact = _fixture_fact() + for value in (None, "", "survey", 1, ["administrative"]): + issues = validate_fact(dataclasses.replace(fact, provenance_class=value)) + assert [issue.code for issue in issues] == ["malformed_provenance_class"] + + +def test_survey_instrument_is_required_only_for_survey_aggregates(): + fact = _fixture_fact() + missing = dataclasses.replace(fact, provenance_class="survey_aggregate") + blank = dataclasses.replace( + fact, + provenance_class="survey_aggregate", + survey_instrument=" ", + ) + misplaced = dataclasses.replace(fact, survey_instrument="ACS 1-year") + valid = dataclasses.replace( + fact, + provenance_class="survey_aggregate", + survey_instrument="ACS 1-year", + ) + + assert [issue.code for issue in validate_fact(missing)] == [ + "missing_survey_instrument" + ] + assert [issue.code for issue in validate_fact(blank)] == [ + "missing_survey_instrument" + ] + assert [issue.code for issue in validate_fact(misplaced)] == [ + "misplaced_survey_instrument" + ] + assert not validate_fact(valid) + payload = fact_to_mapping(valid) + assert payload["provenance_class"] == "survey_aggregate" + assert payload["survey_instrument"] == "ACS 1-year" + assert fact_from_mapping(json.loads(json.dumps(payload))) == valid + + +def test_provenance_class_is_required_on_fact_load_but_not_fact_identity(): + fact = _fixture_fact() + payload = fact_to_mapping(fact) + payload.pop("provenance_class") + + with pytest.raises(KeyError, match="provenance_class"): + fact_from_mapping(payload) + + reclassified = dataclasses.replace(fact, provenance_class="model_output") + assert build_fact_key(reclassified) == build_fact_key(fact) + assert build_aggregate_fact_key(reclassified) == build_aggregate_fact_key(fact) + assert build_semantic_fact_key(reclassified) == build_semantic_fact_key(fact) + + def test_period_coverage_is_not_identity(): fact = _fixture_fact() covered = dataclasses.replace( @@ -160,6 +219,7 @@ def test_consumer_rows_expose_assertion(): def _record_set_payload(**overrides) -> dict: payload = { "record_set_id": "cbo.cy2027.baseline.receipts", + "provenance_class": "model_output", "record_set_spec_id": "cbo.baseline.receipts.v1", "source_record_id_prefix": "cbo.cy2027.baseline.receipts", "sheet_name": "Sheet1", @@ -238,6 +298,7 @@ def _minimal_fact(**overrides) -> AggregateFact: entity=EntityDimension(name="tax_unit"), measure=Measure(concept="irs_soi.agi", unit="usd"), aggregation=Aggregation(method="sum"), + provenance_class="administrative", source=SourceProvenance( source_name="irs_soi", source_table="Table 1.1", diff --git a/tests/test_ledger_source_package.py b/tests/test_ledger_source_package.py index b59a5aa..7838963 100644 --- a/tests/test_ledger_source_package.py +++ b/tests/test_ledger_source_package.py @@ -20,6 +20,7 @@ from ledger.source_package import ( SOURCE_ARTIFACT_CACHE_ENV, SOURCE_ARTIFACT_FETCH_ENV, + DeclarativeRecordSet, SourceArtifactSpec, _read_source_artifact_content, _render_string, @@ -32,6 +33,12 @@ from ledger.suite import build_source_suite REPO_ROOT = Path(__file__).resolve().parents[1] +ALLOWED_PROVENANCE_CLASSES = { + "administrative", + "census", + "model_output", + "survey_aggregate", +} class _InlineZipArtifactSpec(SourceArtifactSpec): @@ -87,6 +94,126 @@ def read_bytes(self) -> bytes: raise FileNotFoundError("not packaged") +@pytest.mark.parametrize( + ("provenance_fields", "message"), + [ + ({}, "provenance_class"), + ({"provenance_class": "unknown"}, "must be one of"), + ({"provenance_class": 1}, "must be a string"), + ({"provenance_class": ["administrative"]}, "must be a string"), + ({"provenance_class": "survey_aggregate"}, "survey_instrument"), + ( + {"provenance_class": "survey_aggregate", "survey_instrument": ""}, + "non-empty string", + ), + ( + {"provenance_class": "survey_aggregate", "survey_instrument": " "}, + "non-empty string", + ), + ( + {"provenance_class": "survey_aggregate", "survey_instrument": 1}, + "non-empty string", + ), + ( + { + "provenance_class": "administrative", + "survey_instrument": "ACS 1-year", + }, + "forbidden", + ), + ], +) +def test_record_set_provenance_schema_fails_load_compile_and_validation( + tmp_path, + provenance_fields, + message, +): + source_path = REPO_ROOT / "packages" / "irs_soi" / "table_1_1" + payload = yaml.safe_load((source_path / "source_package.yaml").read_text()) + record_set = payload["record_sets"][0] + record_set.pop("provenance_class") + record_set.pop("survey_instrument", None) + record_set.update(provenance_fields) + + package_dir = tmp_path / "malformed-provenance" + package_dir.mkdir() + (package_dir / "source_package.yaml").write_text(yaml.safe_dump(payload)) + + with pytest.raises((KeyError, TypeError, ValueError), match=message): + load_source_package(package_dir) + with pytest.raises((KeyError, TypeError, ValueError), match=message): + DeclarativeRecordSet(record_set).to_record_set_spec(2023) + report = validate_source_package(package_dir, year=2023) + assert not report.valid + assert [error.code for error in report.errors] == ["source_package_load_failed"] + assert message in report.errors[0].message + + +def test_record_set_provenance_fields_propagate_to_specs_and_facts(): + administrative = load_source_package("soi-table-1-1") + admin_set = administrative.build_source_record_set_specs(2023)[0] + admin_spec = administrative.build_source_record_specs(2023)[0] + admin_fact = administrative.build_facts(2023)[0] + survey = load_source_package("census-acs-s0101-national-age-2024") + survey_set = survey.build_source_record_set_specs(2024)[0] + survey_spec = survey.build_source_record_specs(2024)[0] + + assert admin_set.provenance_class == "administrative" + assert admin_spec.provenance_class == "administrative" + assert admin_fact.provenance_class == "administrative" + assert admin_fact.survey_instrument is None + assert survey_set.provenance_class == "survey_aggregate" + assert survey_set.survey_instrument == "ACS 1-year" + assert survey_spec.provenance_class == "survey_aggregate" + assert survey_spec.survey_instrument == "ACS 1-year" + + +def test_every_source_package_record_set_declares_provenance_class(): + missing: list[str] = [] + malformed: list[str] = [] + record_set_count = 0 + provenance_line_count = 0 + record_set_line_count = 0 + + for path in sorted((REPO_ROOT / "packages").glob("*/*/source_package.yaml")): + text = path.read_text() + record_set_line_count += sum( + 1 + for line in text.splitlines() + if line.lstrip().removeprefix("- ").startswith("record_set_id:") + ) + provenance_line_count += sum( + 1 + for line in text.splitlines() + if line.lstrip().startswith("provenance_class:") + ) + payload = yaml.safe_load(text) + for index, record_set in enumerate(payload["record_sets"]): + record_set_count += 1 + record_set_id = record_set.get("record_set_id", f"index {index}") + location = f"{path.relative_to(REPO_ROOT)}:{record_set_id}" + if "provenance_class" not in record_set: + missing.append(location) + continue + provenance_class = record_set["provenance_class"] + survey_instrument = record_set.get("survey_instrument") + if provenance_class not in ALLOWED_PROVENANCE_CLASSES: + malformed.append(f"{location}: {provenance_class!r}") + elif provenance_class == "survey_aggregate": + if type(survey_instrument) is not str or not survey_instrument.strip(): + malformed.append(f"{location}: missing survey_instrument") + elif "survey_instrument" in record_set: + malformed.append(f"{location}: misplaced survey_instrument") + + assert len(load_source_package(path).record_sets) == len(payload["record_sets"]) + + assert not missing, "Record sets missing provenance_class:\n" + "\n".join(missing) + assert not malformed, "Malformed provenance declarations:\n" + "\n".join( + malformed + ) + assert record_set_line_count == provenance_line_count == record_set_count + + def test_source_package_alias_compiles_soi_table_1_1_specs(): package = load_source_package("soi-table-1-1") record_set = package.build_source_record_set_specs(2023)[0] @@ -99,7 +226,7 @@ def test_source_package_alias_compiles_soi_table_1_1_specs(): assert len(specs) == 80 assert specs[0].source_record_id == "irs_soi.ty2023.table_1_1.all.return_count" assert specs[0].layout is not None - assert specs[0].layout.record_set_spec_hash == "011ac4a343bae6b43ca9da3c" + assert specs[0].layout.record_set_spec_hash == "a1ecc4d67a3d281548a4660e" def test_empty_guard_cells_do_not_change_legacy_single_cell_hash(tmp_path): @@ -114,7 +241,7 @@ def test_empty_guard_cells_do_not_change_legacy_single_cell_hash(tmp_path): specs = load_source_package(package_dir).build_source_record_specs(2023) assert specs[0].layout is not None - assert specs[0].layout.record_set_spec_hash == "011ac4a343bae6b43ca9da3c" + assert specs[0].layout.record_set_spec_hash == "a1ecc4d67a3d281548a4660e" def test_source_package_validation_rejects_count_aggregation(tmp_path): diff --git a/tests/test_ledger_suite.py b/tests/test_ledger_suite.py index cb1948e..9e3af7c 100644 --- a/tests/test_ledger_suite.py +++ b/tests/test_ledger_suite.py @@ -223,6 +223,7 @@ def test_agent_acceptance_accepts_aggregate_income_range_source_rows(): entity=EntityDimension(name="tax_unit"), measure=Measure(concept="irs_soi.taxable_interest", unit="usd"), aggregation=Aggregation(method="sum"), + provenance_class="administrative", source=SourceProvenance( source_name="irs_soi", source_table="test", @@ -329,6 +330,7 @@ def test_agent_acceptance_rejects_row_constraints_without_source_evidence(): unit="usd", ), aggregation=Aggregation(method="sum"), + provenance_class="model_output", source=SourceProvenance( source_name="bea", source_table="test", @@ -438,6 +440,7 @@ def test_agent_acceptance_accepts_source_row_bound_constraints(): unit="gbp", ), aggregation=Aggregation(method="sum"), + provenance_class="model_output", source=SourceProvenance( source_name="hmrc_spi", source_table="test", @@ -557,6 +560,7 @@ def test_agent_acceptance_accepts_age_constraints_from_source_cell_header(): unit="count", ), aggregation=Aggregation(method="sum"), + provenance_class="model_output", source=SourceProvenance( source_name="census_population_projections", source_table="test", diff --git a/tests/test_policyengine_ledger_imports.py b/tests/test_policyengine_ledger_imports.py index 6320ea3..01f6777 100644 --- a/tests/test_policyengine_ledger_imports.py +++ b/tests/test_policyengine_ledger_imports.py @@ -24,6 +24,7 @@ def test__given_ledger_import_path__then_it_reexports_ledger_fact_schema() -> No entity=EntityDimension(name="person"), measure=Measure(concept="test.people", unit="count"), aggregation=Aggregation(method="sum"), + provenance_class="administrative", source=SourceProvenance( source_name="test", source_table="Fixture",