Graph: national county↔district↔legislator authority layer

The first edges in the repo. Every US county now links to the districts it
sits in, weighted by area overlap, and every legislator links to the district
they represent — county → district → representative, traversable.

Data (PostGIS, no Atlas dependency — computed directly from geometry):
- data/county_district_edges.jsonl — 16,328 weighted edges. area_weight =
  ST_Area(ST_Intersection(county, district))/ST_Area(county) over ST_MakeValid
  Census TIGER 2024 geometries, overlaps <0.5% dropped. Uses area-intersection,
  NOT centroid-in-polygon, so urban districts that carve through counties
  (e.g. GA CD-5 / Atlanta across Clayton+DeKalb+Fulton) are captured, not
  silently dropped. Per-county weights sum to ~1.0 per district type.

build.py:
- ~6,896 new district nodes: 435 CD (ACS demographics where available; sparse
  for the 8 states missing from acs_cd) + 4,927 state-house + 1,897 state-senate
  (geometry-only). GEOID/number-keyed, stable.
- county index.md gains a `districts:` block (frontmatter) + a ## Districts
  section (body links, so link-integrity checks them).
- legislators + US House members gain `represents:` pointing at their district
  node; edge stored once on the person, inverse left to the view.
- schemas/jurisdiction: classification enum + chamber/districts fields.

Honest gaps (logged, not hidden): ID + NH have no state-house geometry, so
their house districts get nodes (represents resolves) but no county edges;
CD nodes for acs_cd-missing states are demographically sparse.

Deterministic (byte-identical rebuild); validate.py passes 26,617 records,
link-integrity clean (every district/represents link resolves).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Fabio
2026-07-04 22:28:08 -04:00
parent 6c9990a115
commit 1beeaab2db
18213 changed files with 280514 additions and 3515 deletions
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 90"
represents: "us/states/ia/districts/house/90"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 90 (IA State House of Representatives District 90).
Represents [IA State House of Representatives District 90](/us/states/ia/districts/house/90.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 44"
represents: "us/states/ia/districts/senate/44"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 44 (IA State Senate District 44).
Represents [IA State Senate District 44](/us/states/ia/districts/senate/44.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 80"
represents: "us/states/ia/districts/house/80"
tenure:
start: "2025-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 80 (IA State House of Representatives District 80).
Represents [IA State House of Representatives District 80](/us/states/ia/districts/house/80.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 85"
represents: "us/states/ia/districts/house/85"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 85 (IA State House of Representatives District 85).
Represents [IA State House of Representatives District 85](/us/states/ia/districts/house/85.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 12"
represents: "us/states/ia/districts/senate/12"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 12 (IA State Senate District 12).
Represents [IA State Senate District 12](/us/states/ia/districts/senate/12.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 78"
represents: "us/states/ia/districts/house/78"
tenure:
start: "2025-05-13"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 78 (IA State House of Representatives District 78).
Represents [IA State House of Representatives District 78](/us/states/ia/districts/house/78.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 8"
represents: "us/states/ia/districts/house/8"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 8 (IA State House of Representatives District 8).
Represents [IA State House of Representatives District 8](/us/states/ia/districts/house/8.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 27"
represents: "us/states/ia/districts/senate/27"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 27 (IA State Senate District 27).
Represents [IA State Senate District 27](/us/states/ia/districts/senate/27.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 40"
represents: "us/states/ia/districts/senate/40"
tenure:
start: "2025-01-02"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 40 (IA State Senate District 40).
Represents [IA State Senate District 40](/us/states/ia/districts/senate/40.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 36"
represents: "us/states/ia/districts/house/36"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 36 (IA State House of Representatives District 36).
Represents [IA State House of Representatives District 36](/us/states/ia/districts/house/36.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 26"
represents: "us/states/ia/districts/house/26"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 26 (IA State House of Representatives District 26).
Represents [IA State House of Representatives District 26](/us/states/ia/districts/house/26.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 37"
represents: "us/states/ia/districts/house/37"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 37 (IA State House of Representatives District 37).
Represents [IA State House of Representatives District 37](/us/states/ia/districts/house/37.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 49"
represents: "us/states/ia/districts/house/49"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 49 (IA State House of Representatives District 49).
Represents [IA State House of Representatives District 49](/us/states/ia/districts/house/49.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 40"
represents: "us/states/ia/districts/house/40"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 40 (IA State House of Representatives District 40).
Represents [IA State House of Representatives District 40](/us/states/ia/districts/house/40.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 100"
represents: "us/states/ia/districts/house/100"
tenure:
start: "2025-03-24"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 100 (IA State House of Representatives District 100).
Represents [IA State House of Representatives District 100](/us/states/ia/districts/house/100.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 2"
represents: "us/states/ia/districts/house/2"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 2 (IA State House of Representatives District 2).
Represents [IA State House of Representatives District 2](/us/states/ia/districts/house/2.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 75"
represents: "us/states/ia/districts/house/75"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 75 (IA State House of Representatives District 75).
Represents [IA State House of Representatives District 75](/us/states/ia/districts/house/75.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 82"
represents: "us/states/ia/districts/house/82"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 82 (IA State House of Representatives District 82).
Represents [IA State House of Representatives District 82](/us/states/ia/districts/house/82.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 19"
represents: "us/states/ia/districts/house/19"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 19 (IA State House of Representatives District 19).
Represents [IA State House of Representatives District 19](/us/states/ia/districts/house/19.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 51"
represents: "us/states/ia/districts/house/51"
tenure:
start: "2025-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 51 (IA State House of Representatives District 51).
Represents [IA State House of Representatives District 51](/us/states/ia/districts/house/51.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 45"
represents: "us/states/ia/districts/house/45"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 45 (IA State House of Representatives District 45).
Represents [IA State House of Representatives District 45](/us/states/ia/districts/house/45.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 29"
represents: "us/states/ia/districts/house/29"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 29 (IA State House of Representatives District 29).
Represents [IA State House of Representatives District 29](/us/states/ia/districts/house/29.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 21"
represents: "us/states/ia/districts/house/21"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 21 (IA State House of Representatives District 21).
Represents [IA State House of Representatives District 21](/us/states/ia/districts/house/21.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 23"
represents: "us/states/ia/districts/house/23"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 23 (IA State House of Representatives District 23).
Represents [IA State House of Representatives District 23](/us/states/ia/districts/house/23.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 33"
represents: "us/states/ia/districts/senate/33"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 33 (IA State Senate District 33).
Represents [IA State Senate District 33](/us/states/ia/districts/senate/33.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 47"
represents: "us/states/ia/districts/house/47"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 47 (IA State House of Representatives District 47).
Represents [IA State House of Representatives District 47](/us/states/ia/districts/house/47.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 1"
represents: "us/states/ia/districts/senate/1"
tenure:
start: "2025-09-15"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 1 (IA State Senate District 1).
Represents [IA State Senate District 1](/us/states/ia/districts/senate/1.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 48"
represents: "us/states/ia/districts/house/48"
tenure:
start: "2025-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 48 (IA State House of Representatives District 48).
Represents [IA State House of Representatives District 48](/us/states/ia/districts/house/48.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 68"
represents: "us/states/ia/districts/house/68"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 68 (IA State House of Representatives District 68).
Represents [IA State House of Representatives District 68](/us/states/ia/districts/house/68.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 58"
represents: "us/states/ia/districts/house/58"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 58 (IA State House of Representatives District 58).
Represents [IA State House of Representatives District 58](/us/states/ia/districts/house/58.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 42"
represents: "us/states/ia/districts/senate/42"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 42 (IA State Senate District 42).
Represents [IA State Senate District 42](/us/states/ia/districts/senate/42.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 13"
represents: "us/states/ia/districts/senate/13"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 13 (IA State Senate District 13).
Represents [IA State Senate District 13](/us/states/ia/districts/senate/13.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 59"
represents: "us/states/ia/districts/house/59"
tenure:
start: "2025-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 59 (IA State House of Representatives District 59).
Represents [IA State House of Representatives District 59](/us/states/ia/districts/house/59.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 83"
represents: "us/states/ia/districts/house/83"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 83 (IA State House of Representatives District 83).
Represents [IA State House of Representatives District 83](/us/states/ia/districts/house/83.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 49"
represents: "us/states/ia/districts/senate/49"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 49 (IA State Senate District 49).
Represents [IA State Senate District 49](/us/states/ia/districts/senate/49.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 67"
represents: "us/states/ia/districts/house/67"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 67 (IA State House of Representatives District 67).
Represents [IA State House of Representatives District 67](/us/states/ia/districts/house/67.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 11"
represents: "us/states/ia/districts/house/11"
tenure:
start: "2025-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 11 (IA State House of Representatives District 11).
Represents [IA State House of Representatives District 11](/us/states/ia/districts/house/11.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 10"
represents: "us/states/ia/districts/senate/10"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 10 (IA State Senate District 10).
Represents [IA State Senate District 10](/us/states/ia/districts/senate/10.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 46"
represents: "us/states/ia/districts/house/46"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 46 (IA State House of Representatives District 46).
Represents [IA State House of Representatives District 46](/us/states/ia/districts/house/46.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 81"
represents: "us/states/ia/districts/house/81"
tenure:
start: "2025-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 81 (IA State House of Representatives District 81).
Represents [IA State House of Representatives District 81](/us/states/ia/districts/house/81.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 34"
represents: "us/states/ia/districts/senate/34"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 34 (IA State Senate District 34).
Represents [IA State Senate District 34](/us/states/ia/districts/senate/34.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 86"
represents: "us/states/ia/districts/house/86"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 86 (IA State House of Representatives District 86).
Represents [IA State House of Representatives District 86](/us/states/ia/districts/house/86.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 5"
represents: "us/states/ia/districts/senate/5"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 5 (IA State Senate District 5).
Represents [IA State Senate District 5](/us/states/ia/districts/senate/5.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 38"
represents: "us/states/ia/districts/senate/38"
tenure:
start: "2025-01-02"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 38 (IA State Senate District 38).
Represents [IA State Senate District 38](/us/states/ia/districts/senate/38.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 52"
represents: "us/states/ia/districts/house/52"
tenure:
start: "2025-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 52 (IA State House of Representatives District 52).
Represents [IA State House of Representatives District 52](/us/states/ia/districts/house/52.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 16"
represents: "us/states/ia/districts/house/16"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 16 (IA State House of Representatives District 16).
Represents [IA State House of Representatives District 16](/us/states/ia/districts/house/16.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 28"
represents: "us/states/ia/districts/house/28"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 28 (IA State House of Representatives District 28).
Represents [IA State House of Representatives District 28](/us/states/ia/districts/house/28.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 46"
represents: "us/states/ia/districts/senate/46"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 46 (IA State Senate District 46).
Represents [IA State Senate District 46](/us/states/ia/districts/senate/46.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 53"
represents: "us/states/ia/districts/house/53"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 53 (IA State House of Representatives District 53).
Represents [IA State House of Representatives District 53](/us/states/ia/districts/house/53.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 28"
represents: "us/states/ia/districts/senate/28"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 28 (IA State Senate District 28).
Represents [IA State Senate District 28](/us/states/ia/districts/senate/28.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 76"
represents: "us/states/ia/districts/house/76"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 76 (IA State House of Representatives District 76).
Represents [IA State House of Representatives District 76](/us/states/ia/districts/house/76.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 17"
represents: "us/states/ia/districts/house/17"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 17 (IA State House of Representatives District 17).
Represents [IA State House of Representatives District 17](/us/states/ia/districts/house/17.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 30"
represents: "us/states/ia/districts/senate/30"
tenure:
start: "2025-01-02"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 30 (IA State Senate District 30).
Represents [IA State Senate District 30](/us/states/ia/districts/senate/30.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 43"
represents: "us/states/ia/districts/house/43"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 43 (IA State House of Representatives District 43).
Represents [IA State House of Representatives District 43](/us/states/ia/districts/house/43.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 89"
represents: "us/states/ia/districts/house/89"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 89 (IA State House of Representatives District 89).
Represents [IA State House of Representatives District 89](/us/states/ia/districts/house/89.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 73"
represents: "us/states/ia/districts/house/73"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 73 (IA State House of Representatives District 73).
Represents [IA State House of Representatives District 73](/us/states/ia/districts/house/73.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 74"
represents: "us/states/ia/districts/house/74"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 74 (IA State House of Representatives District 74).
Represents [IA State House of Representatives District 74](/us/states/ia/districts/house/74.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 93"
represents: "us/states/ia/districts/house/93"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 93 (IA State House of Representatives District 93).
Represents [IA State House of Representatives District 93](/us/states/ia/districts/house/93.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 25"
represents: "us/states/ia/districts/house/25"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 25 (IA State House of Representatives District 25).
Represents [IA State House of Representatives District 25](/us/states/ia/districts/house/25.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 92"
represents: "us/states/ia/districts/house/92"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 92 (IA State House of Representatives District 92).
Represents [IA State House of Representatives District 92](/us/states/ia/districts/house/92.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 42"
represents: "us/states/ia/districts/house/42"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 42 (IA State House of Representatives District 42).
Represents [IA State House of Representatives District 42](/us/states/ia/districts/house/42.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 88"
represents: "us/states/ia/districts/house/88"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 88 (IA State House of Representatives District 88).
Represents [IA State House of Representatives District 88](/us/states/ia/districts/house/88.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 9"
represents: "us/states/ia/districts/house/9"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 9 (IA State House of Representatives District 9).
Represents [IA State House of Representatives District 9](/us/states/ia/districts/house/9.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 25"
represents: "us/states/ia/districts/senate/25"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 25 (IA State Senate District 25).
Represents [IA State Senate District 25](/us/states/ia/districts/senate/25.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 17"
represents: "us/states/ia/districts/senate/17"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 17 (IA State Senate District 17).
Represents [IA State Senate District 17](/us/states/ia/districts/senate/17.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 1"
represents: "us/states/ia/districts/house/1"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 1 (IA State House of Representatives District 1).
Represents [IA State House of Representatives District 1](/us/states/ia/districts/house/1.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 23"
represents: "us/states/ia/districts/senate/23"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 23 (IA State Senate District 23).
Represents [IA State Senate District 23](/us/states/ia/districts/senate/23.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 14"
represents: "us/states/ia/districts/house/14"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 14 (IA State House of Representatives District 14).
Represents [IA State House of Representatives District 14](/us/states/ia/districts/house/14.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 60"
represents: "us/states/ia/districts/house/60"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 60 (IA State House of Representatives District 60).
Represents [IA State House of Representatives District 60](/us/states/ia/districts/house/60.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 18"
represents: "us/states/ia/districts/senate/18"
tenure:
start: "2013-01-14"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 18 (IA State Senate District 18).
Represents [IA State Senate District 18](/us/states/ia/districts/senate/18.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 45"
represents: "us/states/ia/districts/senate/45"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 45 (IA State Senate District 45).
Represents [IA State Senate District 45](/us/states/ia/districts/senate/45.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 64"
represents: "us/states/ia/districts/house/64"
tenure:
start: "2025-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 64 (IA State House of Representatives District 64).
Represents [IA State House of Representatives District 64](/us/states/ia/districts/house/64.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 6"
represents: "us/states/ia/districts/senate/6"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 6 (IA State Senate District 6).
Represents [IA State Senate District 6](/us/states/ia/districts/senate/6.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 77"
represents: "us/states/ia/districts/house/77"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 77 (IA State House of Representatives District 77).
Represents [IA State House of Representatives District 77](/us/states/ia/districts/house/77.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 50"
represents: "us/states/ia/districts/senate/50"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 50 (IA State Senate District 50).
Represents [IA State Senate District 50](/us/states/ia/districts/senate/50.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 87"
represents: "us/states/ia/districts/house/87"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 87 (IA State House of Representatives District 87).
Represents [IA State House of Representatives District 87](/us/states/ia/districts/house/87.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 2"
represents: "us/states/ia/districts/senate/2"
tenure:
start: "2021-01-11"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 2 (IA State Senate District 2).
Represents [IA State Senate District 2](/us/states/ia/districts/senate/2.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 32"
represents: "us/states/ia/districts/house/32"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 32 (IA State House of Representatives District 32).
Represents [IA State House of Representatives District 32](/us/states/ia/districts/house/32.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 72"
represents: "us/states/ia/districts/house/72"
tenure:
start: "2025-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 72 (IA State House of Representatives District 72).
Represents [IA State House of Representatives District 72](/us/states/ia/districts/house/72.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 62"
represents: "us/states/ia/districts/house/62"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 62 (IA State House of Representatives District 62).
Represents [IA State House of Representatives District 62](/us/states/ia/districts/house/62.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 24"
represents: "us/states/ia/districts/senate/24"
tenure:
start: "2021-01-11"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 24 (IA State Senate District 24).
Represents [IA State Senate District 24](/us/states/ia/districts/senate/24.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 10"
represents: "us/states/ia/districts/house/10"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 10 (IA State House of Representatives District 10).
Represents [IA State House of Representatives District 10](/us/states/ia/districts/house/10.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 38"
represents: "us/states/ia/districts/house/38"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 38 (IA State House of Representatives District 38).
Represents [IA State House of Representatives District 38](/us/states/ia/districts/house/38.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 54"
represents: "us/states/ia/districts/house/54"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 54 (IA State House of Representatives District 54).
Represents [IA State House of Representatives District 54](/us/states/ia/districts/house/54.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 20"
represents: "us/states/ia/districts/house/20"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 20 (IA State House of Representatives District 20).
Represents [IA State House of Representatives District 20](/us/states/ia/districts/house/20.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 91"
represents: "us/states/ia/districts/house/91"
tenure:
start: "2025-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 91 (IA State House of Representatives District 91).
Represents [IA State House of Representatives District 91](/us/states/ia/districts/house/91.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 11"
represents: "us/states/ia/districts/senate/11"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 11 (IA State Senate District 11).
Represents [IA State Senate District 11](/us/states/ia/districts/senate/11.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 26"
represents: "us/states/ia/districts/senate/26"
tenure:
start: "2025-01-02"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 26 (IA State Senate District 26).
Represents [IA State Senate District 26](/us/states/ia/districts/senate/26.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 97"
represents: "us/states/ia/districts/house/97"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 97 (IA State House of Representatives District 97).
Represents [IA State House of Representatives District 97](/us/states/ia/districts/house/97.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 19"
represents: "us/states/ia/districts/senate/19"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 19 (IA State Senate District 19).
Represents [IA State Senate District 19](/us/states/ia/districts/senate/19.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 27"
represents: "us/states/ia/districts/house/27"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 27 (IA State House of Representatives District 27).
Represents [IA State House of Representatives District 27](/us/states/ia/districts/house/27.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 41"
represents: "us/states/ia/districts/senate/41"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 41 (IA State Senate District 41).
Represents [IA State Senate District 41](/us/states/ia/districts/senate/41.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 7"
represents: "us/states/ia/districts/senate/7"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 7 (IA State Senate District 7).
Represents [IA State Senate District 7](/us/states/ia/districts/senate/7.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 44"
represents: "us/states/ia/districts/house/44"
tenure:
start: "2025-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 44 (IA State House of Representatives District 44).
Represents [IA State House of Representatives District 44](/us/states/ia/districts/house/44.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 71"
represents: "us/states/ia/districts/house/71"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 71 (IA State House of Representatives District 71).
Represents [IA State House of Representatives District 71](/us/states/ia/districts/house/71.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 39"
represents: "us/states/ia/districts/senate/39"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 39 (IA State Senate District 39).
Represents [IA State Senate District 39](/us/states/ia/districts/senate/39.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 3"
represents: "us/states/ia/districts/senate/3"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 3 (IA State Senate District 3).
Represents [IA State Senate District 3](/us/states/ia/districts/senate/3.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State House of Representatives District 96"
represents: "us/states/ia/districts/house/96"
tenure:
start: "2023-01-01"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA House District 96 (IA State House of Representatives District 96).
Represents [IA State House of Representatives District 96](/us/states/ia/districts/house/96.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 8"
represents: "us/states/ia/districts/senate/8"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 8 (IA State Senate District 8).
Represents [IA State Senate District 8](/us/states/ia/districts/senate/8.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "IA"
district: "IA State Senate District 48"
represents: "us/states/ia/districts/senate/48"
tenure:
start: "2023-01-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current IA Senate District 48 (IA State Senate District 48).
Represents [IA State Senate District 48](/us/states/ia/districts/senate/48.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20

Some files were not shown because too many files have changed in this diff Show More