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:
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 45"
|
||||
represents: "us/states/ar/districts/house/45"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 45 (AR State House of Representatives District 45).
|
||||
|
||||
Represents [AR State House of Representatives District 45](/us/states/ar/districts/house/45.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 7"
|
||||
represents: "us/states/ar/districts/senate/7"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 7 (AR State Senate District 7).
|
||||
|
||||
Represents [AR State Senate District 7](/us/states/ar/districts/senate/7.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 70"
|
||||
represents: "us/states/ar/districts/house/70"
|
||||
tenure:
|
||||
start: "2026-03-20"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 70 (AR State House of Representatives District 70).
|
||||
|
||||
Represents [AR State House of Representatives District 70](/us/states/ar/districts/house/70.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 41"
|
||||
represents: "us/states/ar/districts/house/41"
|
||||
tenure:
|
||||
start: "2025-01-13"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 41 (AR State House of Representatives District 41).
|
||||
|
||||
Represents [AR State House of Representatives District 41](/us/states/ar/districts/house/41.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 73"
|
||||
represents: "us/states/ar/districts/house/73"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 73 (AR State House of Representatives District 73).
|
||||
|
||||
Represents [AR State House of Representatives District 73](/us/states/ar/districts/house/73.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 75"
|
||||
represents: "us/states/ar/districts/house/75"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 75 (AR State House of Representatives District 75).
|
||||
|
||||
Represents [AR State House of Representatives District 75](/us/states/ar/districts/house/75.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 8"
|
||||
represents: "us/states/ar/districts/house/8"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 8 (AR State House of Representatives District 8).
|
||||
|
||||
Represents [AR State House of Representatives District 8](/us/states/ar/districts/house/8.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 33"
|
||||
represents: "us/states/ar/districts/senate/33"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 33 (AR State Senate District 33).
|
||||
|
||||
Represents [AR State Senate District 33](/us/states/ar/districts/senate/33.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 28"
|
||||
represents: "us/states/ar/districts/house/28"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 28 (AR State House of Representatives District 28).
|
||||
|
||||
Represents [AR State House of Representatives District 28](/us/states/ar/districts/house/28.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 1"
|
||||
represents: "us/states/ar/districts/senate/1"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 1 (AR State Senate District 1).
|
||||
|
||||
Represents [AR State Senate District 1](/us/states/ar/districts/senate/1.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 21"
|
||||
represents: "us/states/ar/districts/senate/21"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 21 (AR State Senate District 21).
|
||||
|
||||
Represents [AR State Senate District 21](/us/states/ar/districts/senate/21.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 24"
|
||||
represents: "us/states/ar/districts/house/24"
|
||||
tenure:
|
||||
start: "2025-01-13"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 24 (AR State House of Representatives District 24).
|
||||
|
||||
Represents [AR State House of Representatives District 24](/us/states/ar/districts/house/24.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 26"
|
||||
represents: "us/states/ar/districts/senate/26"
|
||||
tenure:
|
||||
start: "2026-03-18"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 26 (AR State Senate District 26).
|
||||
|
||||
Represents [AR State Senate District 26](/us/states/ar/districts/senate/26.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 71"
|
||||
represents: "us/states/ar/districts/house/71"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 71 (AR State House of Representatives District 71).
|
||||
|
||||
Represents [AR State House of Representatives District 71](/us/states/ar/districts/house/71.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 25"
|
||||
represents: "us/states/ar/districts/senate/25"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 25 (AR State Senate District 25).
|
||||
|
||||
Represents [AR State Senate District 25](/us/states/ar/districts/senate/25.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 68"
|
||||
represents: "us/states/ar/districts/house/68"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 68 (AR State House of Representatives District 68).
|
||||
|
||||
Represents [AR State House of Representatives District 68](/us/states/ar/districts/house/68.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 7"
|
||||
represents: "us/states/ar/districts/house/7"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 7 (AR State House of Representatives District 7).
|
||||
|
||||
Represents [AR State House of Representatives District 7](/us/states/ar/districts/house/7.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 91"
|
||||
represents: "us/states/ar/districts/house/91"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 91 (AR State House of Representatives District 91).
|
||||
|
||||
Represents [AR State House of Representatives District 91](/us/states/ar/districts/house/91.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 28"
|
||||
represents: "us/states/ar/districts/senate/28"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 28 (AR State Senate District 28).
|
||||
|
||||
Represents [AR State Senate District 28](/us/states/ar/districts/senate/28.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 57"
|
||||
represents: "us/states/ar/districts/house/57"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 57 (AR State House of Representatives District 57).
|
||||
|
||||
Represents [AR State House of Representatives District 57](/us/states/ar/districts/house/57.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 100"
|
||||
represents: "us/states/ar/districts/house/100"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 100 (AR State House of Representatives District 100).
|
||||
|
||||
Represents [AR State House of Representatives District 100](/us/states/ar/districts/house/100.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 25"
|
||||
represents: "us/states/ar/districts/house/25"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 25 (AR State House of Representatives District 25).
|
||||
|
||||
Represents [AR State House of Representatives District 25](/us/states/ar/districts/house/25.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 51"
|
||||
represents: "us/states/ar/districts/house/51"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 51 (AR State House of Representatives District 51).
|
||||
|
||||
Represents [AR State House of Representatives District 51](/us/states/ar/districts/house/51.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 14"
|
||||
represents: "us/states/ar/districts/senate/14"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 14 (AR State Senate District 14).
|
||||
|
||||
Represents [AR State Senate District 14](/us/states/ar/districts/senate/14.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 31"
|
||||
represents: "us/states/ar/districts/senate/31"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 31 (AR State Senate District 31).
|
||||
|
||||
Represents [AR State Senate District 31](/us/states/ar/districts/senate/31.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 20"
|
||||
represents: "us/states/ar/districts/senate/20"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 20 (AR State Senate District 20).
|
||||
|
||||
Represents [AR State Senate District 20](/us/states/ar/districts/senate/20.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 19"
|
||||
represents: "us/states/ar/districts/senate/19"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 19 (AR State Senate District 19).
|
||||
|
||||
Represents [AR State Senate District 19](/us/states/ar/districts/senate/19.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 69"
|
||||
represents: "us/states/ar/districts/house/69"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 69 (AR State House of Representatives District 69).
|
||||
|
||||
Represents [AR State House of Representatives District 69](/us/states/ar/districts/house/69.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 22"
|
||||
represents: "us/states/ar/districts/house/22"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 22 (AR State House of Representatives District 22).
|
||||
|
||||
Represents [AR State House of Representatives District 22](/us/states/ar/districts/house/22.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 87"
|
||||
represents: "us/states/ar/districts/house/87"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 87 (AR State House of Representatives District 87).
|
||||
|
||||
Represents [AR State House of Representatives District 87](/us/states/ar/districts/house/87.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 80"
|
||||
represents: "us/states/ar/districts/house/80"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 80 (AR State House of Representatives District 80).
|
||||
|
||||
Represents [AR State House of Representatives District 80](/us/states/ar/districts/house/80.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 20"
|
||||
represents: "us/states/ar/districts/house/20"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 20 (AR State House of Representatives District 20).
|
||||
|
||||
Represents [AR State House of Representatives District 20](/us/states/ar/districts/house/20.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 9"
|
||||
represents: "us/states/ar/districts/house/9"
|
||||
tenure:
|
||||
start: "2025-01-13"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 9 (AR State House of Representatives District 9).
|
||||
|
||||
Represents [AR State House of Representatives District 9](/us/states/ar/districts/house/9.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 88"
|
||||
represents: "us/states/ar/districts/house/88"
|
||||
tenure:
|
||||
start: "2025-01-13"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 88 (AR State House of Representatives District 88).
|
||||
|
||||
Represents [AR State House of Representatives District 88](/us/states/ar/districts/house/88.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 38"
|
||||
represents: "us/states/ar/districts/house/38"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 38 (AR State House of Representatives District 38).
|
||||
|
||||
Represents [AR State House of Representatives District 38](/us/states/ar/districts/house/38.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 30"
|
||||
represents: "us/states/ar/districts/house/30"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 30 (AR State House of Representatives District 30).
|
||||
|
||||
Represents [AR State House of Representatives District 30](/us/states/ar/districts/house/30.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 77"
|
||||
represents: "us/states/ar/districts/house/77"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 77 (AR State House of Representatives District 77).
|
||||
|
||||
Represents [AR State House of Representatives District 77](/us/states/ar/districts/house/77.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 15"
|
||||
represents: "us/states/ar/districts/senate/15"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 15 (AR State Senate District 15).
|
||||
|
||||
Represents [AR State Senate District 15](/us/states/ar/districts/senate/15.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 65"
|
||||
represents: "us/states/ar/districts/house/65"
|
||||
tenure:
|
||||
start: "2025-01-13"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 65 (AR State House of Representatives District 65).
|
||||
|
||||
Represents [AR State House of Representatives District 65](/us/states/ar/districts/house/65.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 30"
|
||||
represents: "us/states/ar/districts/senate/30"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 30 (AR State Senate District 30).
|
||||
|
||||
Represents [AR State Senate District 30](/us/states/ar/districts/senate/30.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 6"
|
||||
represents: "us/states/ar/districts/house/6"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 6 (AR State House of Representatives District 6).
|
||||
|
||||
Represents [AR State House of Representatives District 6](/us/states/ar/districts/house/6.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 12"
|
||||
represents: "us/states/ar/districts/house/12"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 12 (AR State House of Representatives District 12).
|
||||
|
||||
Represents [AR State House of Representatives District 12](/us/states/ar/districts/house/12.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 95"
|
||||
represents: "us/states/ar/districts/house/95"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 95 (AR State House of Representatives District 95).
|
||||
|
||||
Represents [AR State House of Representatives District 95](/us/states/ar/districts/house/95.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 32"
|
||||
represents: "us/states/ar/districts/house/32"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 32 (AR State House of Representatives District 32).
|
||||
|
||||
Represents [AR State House of Representatives District 32](/us/states/ar/districts/house/32.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 26"
|
||||
represents: "us/states/ar/districts/house/26"
|
||||
tenure:
|
||||
start: "2025-01-13"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 26 (AR State House of Representatives District 26).
|
||||
|
||||
Represents [AR State House of Representatives District 26](/us/states/ar/districts/house/26.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 12"
|
||||
represents: "us/states/ar/districts/senate/12"
|
||||
tenure:
|
||||
start: "2025-01-13"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 12 (AR State Senate District 12).
|
||||
|
||||
Represents [AR State Senate District 12](/us/states/ar/districts/senate/12.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 13"
|
||||
represents: "us/states/ar/districts/senate/13"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 13 (AR State Senate District 13).
|
||||
|
||||
Represents [AR State Senate District 13](/us/states/ar/districts/senate/13.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 4"
|
||||
represents: "us/states/ar/districts/house/4"
|
||||
tenure:
|
||||
start: "2025-01-13"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 4 (AR State House of Representatives District 4).
|
||||
|
||||
Represents [AR State House of Representatives District 4](/us/states/ar/districts/house/4.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 49"
|
||||
represents: "us/states/ar/districts/house/49"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 49 (AR State House of Representatives District 49).
|
||||
|
||||
Represents [AR State House of Representatives District 49](/us/states/ar/districts/house/49.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 94"
|
||||
represents: "us/states/ar/districts/house/94"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 94 (AR State House of Representatives District 94).
|
||||
|
||||
Represents [AR State House of Representatives District 94](/us/states/ar/districts/house/94.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 61"
|
||||
represents: "us/states/ar/districts/house/61"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 61 (AR State House of Representatives District 61).
|
||||
|
||||
Represents [AR State House of Representatives District 61](/us/states/ar/districts/house/61.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 1"
|
||||
represents: "us/states/ar/districts/house/1"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 1 (AR State House of Representatives District 1).
|
||||
|
||||
Represents [AR State House of Representatives District 1](/us/states/ar/districts/house/1.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 35"
|
||||
represents: "us/states/ar/districts/house/35"
|
||||
tenure:
|
||||
start: "2025-01-13"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 35 (AR State House of Representatives District 35).
|
||||
|
||||
Represents [AR State House of Representatives District 35](/us/states/ar/districts/house/35.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 34"
|
||||
represents: "us/states/ar/districts/senate/34"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 34 (AR State Senate District 34).
|
||||
|
||||
Represents [AR State Senate District 34](/us/states/ar/districts/senate/34.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 29"
|
||||
represents: "us/states/ar/districts/senate/29"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 29 (AR State Senate District 29).
|
||||
|
||||
Represents [AR State Senate District 29](/us/states/ar/districts/senate/29.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 59"
|
||||
represents: "us/states/ar/districts/house/59"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 59 (AR State House of Representatives District 59).
|
||||
|
||||
Represents [AR State House of Representatives District 59](/us/states/ar/districts/house/59.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 31"
|
||||
represents: "us/states/ar/districts/house/31"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 31 (AR State House of Representatives District 31).
|
||||
|
||||
Represents [AR State House of Representatives District 31](/us/states/ar/districts/house/31.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 4"
|
||||
represents: "us/states/ar/districts/senate/4"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 4 (AR State Senate District 4).
|
||||
|
||||
Represents [AR State Senate District 4](/us/states/ar/districts/senate/4.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 34"
|
||||
represents: "us/states/ar/districts/house/34"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 34 (AR State House of Representatives District 34).
|
||||
|
||||
Represents [AR State House of Representatives District 34](/us/states/ar/districts/house/34.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 15"
|
||||
represents: "us/states/ar/districts/house/15"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 15 (AR State House of Representatives District 15).
|
||||
|
||||
Represents [AR State House of Representatives District 15](/us/states/ar/districts/house/15.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 86"
|
||||
represents: "us/states/ar/districts/house/86"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 86 (AR State House of Representatives District 86).
|
||||
|
||||
Represents [AR State House of Representatives District 86](/us/states/ar/districts/house/86.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 22"
|
||||
represents: "us/states/ar/districts/senate/22"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 22 (AR State Senate District 22).
|
||||
|
||||
Represents [AR State Senate District 22](/us/states/ar/districts/senate/22.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 36"
|
||||
represents: "us/states/ar/districts/house/36"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 36 (AR State House of Representatives District 36).
|
||||
|
||||
Represents [AR State House of Representatives District 36](/us/states/ar/districts/house/36.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 46"
|
||||
represents: "us/states/ar/districts/house/46"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 46 (AR State House of Representatives District 46).
|
||||
|
||||
Represents [AR State House of Representatives District 46](/us/states/ar/districts/house/46.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 33"
|
||||
represents: "us/states/ar/districts/house/33"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 33 (AR State House of Representatives District 33).
|
||||
|
||||
Represents [AR State House of Representatives District 33](/us/states/ar/districts/house/33.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 18"
|
||||
represents: "us/states/ar/districts/senate/18"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 18 (AR State Senate District 18).
|
||||
|
||||
Represents [AR State Senate District 18](/us/states/ar/districts/senate/18.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 32"
|
||||
represents: "us/states/ar/districts/senate/32"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 32 (AR State Senate District 32).
|
||||
|
||||
Represents [AR State Senate District 32](/us/states/ar/districts/senate/32.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 76"
|
||||
represents: "us/states/ar/districts/house/76"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 76 (AR State House of Representatives District 76).
|
||||
|
||||
Represents [AR State House of Representatives District 76](/us/states/ar/districts/house/76.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 92"
|
||||
represents: "us/states/ar/districts/house/92"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 92 (AR State House of Representatives District 92).
|
||||
|
||||
Represents [AR State House of Representatives District 92](/us/states/ar/districts/house/92.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 27"
|
||||
represents: "us/states/ar/districts/senate/27"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 27 (AR State Senate District 27).
|
||||
|
||||
Represents [AR State Senate District 27](/us/states/ar/districts/senate/27.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 89"
|
||||
represents: "us/states/ar/districts/house/89"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 89 (AR State House of Representatives District 89).
|
||||
|
||||
Represents [AR State House of Representatives District 89](/us/states/ar/districts/house/89.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 67"
|
||||
represents: "us/states/ar/districts/house/67"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 67 (AR State House of Representatives District 67).
|
||||
|
||||
Represents [AR State House of Representatives District 67](/us/states/ar/districts/house/67.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 78"
|
||||
represents: "us/states/ar/districts/house/78"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 78 (AR State House of Representatives District 78).
|
||||
|
||||
Represents [AR State House of Representatives District 78](/us/states/ar/districts/house/78.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 64"
|
||||
represents: "us/states/ar/districts/house/64"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 64 (AR State House of Representatives District 64).
|
||||
|
||||
Represents [AR State House of Representatives District 64](/us/states/ar/districts/house/64.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 16"
|
||||
represents: "us/states/ar/districts/house/16"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 16 (AR State House of Representatives District 16).
|
||||
|
||||
Represents [AR State House of Representatives District 16](/us/states/ar/districts/house/16.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 23"
|
||||
represents: "us/states/ar/districts/house/23"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 23 (AR State House of Representatives District 23).
|
||||
|
||||
Represents [AR State House of Representatives District 23](/us/states/ar/districts/house/23.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 16"
|
||||
represents: "us/states/ar/districts/senate/16"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 16 (AR State Senate District 16).
|
||||
|
||||
Represents [AR State Senate District 16](/us/states/ar/districts/senate/16.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 99"
|
||||
represents: "us/states/ar/districts/house/99"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 99 (AR State House of Representatives District 99).
|
||||
|
||||
Represents [AR State House of Representatives District 99](/us/states/ar/districts/house/99.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 47"
|
||||
represents: "us/states/ar/districts/house/47"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 47 (AR State House of Representatives District 47).
|
||||
|
||||
Represents [AR State House of Representatives District 47](/us/states/ar/districts/house/47.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 58"
|
||||
represents: "us/states/ar/districts/house/58"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 58 (AR State House of Representatives District 58).
|
||||
|
||||
Represents [AR State House of Representatives District 58](/us/states/ar/districts/house/58.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 84"
|
||||
represents: "us/states/ar/districts/house/84"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 84 (AR State House of Representatives District 84).
|
||||
|
||||
Represents [AR State House of Representatives District 84](/us/states/ar/districts/house/84.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 63"
|
||||
represents: "us/states/ar/districts/house/63"
|
||||
tenure:
|
||||
start: "2025-01-13"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 63 (AR State House of Representatives District 63).
|
||||
|
||||
Represents [AR State House of Representatives District 63](/us/states/ar/districts/house/63.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 52"
|
||||
represents: "us/states/ar/districts/house/52"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 52 (AR State House of Representatives District 52).
|
||||
|
||||
Represents [AR State House of Representatives District 52](/us/states/ar/districts/house/52.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 17"
|
||||
represents: "us/states/ar/districts/senate/17"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 17 (AR State Senate District 17).
|
||||
|
||||
Represents [AR State Senate District 17](/us/states/ar/districts/senate/17.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 62"
|
||||
represents: "us/states/ar/districts/house/62"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 62 (AR State House of Representatives District 62).
|
||||
|
||||
Represents [AR State House of Representatives District 62](/us/states/ar/districts/house/62.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 66"
|
||||
represents: "us/states/ar/districts/house/66"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 66 (AR State House of Representatives District 66).
|
||||
|
||||
Represents [AR State House of Representatives District 66](/us/states/ar/districts/house/66.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 54"
|
||||
represents: "us/states/ar/districts/house/54"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 54 (AR State House of Representatives District 54).
|
||||
|
||||
Represents [AR State House of Representatives District 54](/us/states/ar/districts/house/54.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 55"
|
||||
represents: "us/states/ar/districts/house/55"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 55 (AR State House of Representatives District 55).
|
||||
|
||||
Represents [AR State House of Representatives District 55](/us/states/ar/districts/house/55.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 53"
|
||||
represents: "us/states/ar/districts/house/53"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 53 (AR State House of Representatives District 53).
|
||||
|
||||
Represents [AR State House of Representatives District 53](/us/states/ar/districts/house/53.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 6"
|
||||
represents: "us/states/ar/districts/senate/6"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 6 (AR State Senate District 6).
|
||||
|
||||
Represents [AR State Senate District 6](/us/states/ar/districts/senate/6.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 2"
|
||||
represents: "us/states/ar/districts/senate/2"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 2 (AR State Senate District 2).
|
||||
|
||||
Represents [AR State Senate District 2](/us/states/ar/districts/senate/2.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 97"
|
||||
represents: "us/states/ar/districts/house/97"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 97 (AR State House of Representatives District 97).
|
||||
|
||||
Represents [AR State House of Representatives District 97](/us/states/ar/districts/house/97.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 93"
|
||||
represents: "us/states/ar/districts/house/93"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 93 (AR State House of Representatives District 93).
|
||||
|
||||
Represents [AR State House of Representatives District 93](/us/states/ar/districts/house/93.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 10"
|
||||
represents: "us/states/ar/districts/house/10"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 10 (AR State House of Representatives District 10).
|
||||
|
||||
Represents [AR State House of Representatives District 10](/us/states/ar/districts/house/10.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State Senate District 24"
|
||||
represents: "us/states/ar/districts/senate/24"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR Senate District 24 (AR State Senate District 24).
|
||||
|
||||
Represents [AR State Senate District 24](/us/states/ar/districts/senate/24.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 14"
|
||||
represents: "us/states/ar/districts/house/14"
|
||||
tenure:
|
||||
start: "2025-01-13"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 14 (AR State House of Representatives District 14).
|
||||
|
||||
Represents [AR State House of Representatives District 14](/us/states/ar/districts/house/14.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 21"
|
||||
represents: "us/states/ar/districts/house/21"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 21 (AR State House of Representatives District 21).
|
||||
|
||||
Represents [AR State House of Representatives District 21](/us/states/ar/districts/house/21.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 83"
|
||||
represents: "us/states/ar/districts/house/83"
|
||||
tenure:
|
||||
start: "2025-01-13"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 83 (AR State House of Representatives District 83).
|
||||
|
||||
Represents [AR State House of Representatives District 83](/us/states/ar/districts/house/83.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 81"
|
||||
represents: "us/states/ar/districts/house/81"
|
||||
tenure:
|
||||
start: "2023-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 81 (AR State House of Representatives District 81).
|
||||
|
||||
Represents [AR State House of Representatives District 81](/us/states/ar/districts/house/81.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "AR"
|
||||
district: "AR State House of Representatives District 17"
|
||||
represents: "us/states/ar/districts/house/17"
|
||||
tenure:
|
||||
start: "2025-01-13"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current AR House District 17 (AR State House of Representatives District 17).
|
||||
|
||||
Represents [AR State House of Representatives District 17](/us/states/ar/districts/house/17.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
Reference in New Issue
Block a user