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: "OK"
|
||||
district: "OK State Senate District 37"
|
||||
represents: "us/states/ok/districts/senate/37"
|
||||
tenure:
|
||||
start: "2024-11-20"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 37 (OK State Senate District 37).
|
||||
|
||||
Represents [OK State Senate District 37](/us/states/ok/districts/senate/37.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 41"
|
||||
represents: "us/states/ok/districts/senate/41"
|
||||
tenure:
|
||||
start: "2016-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 41 (OK State Senate District 41).
|
||||
|
||||
Represents [OK State Senate District 41](/us/states/ok/districts/senate/41.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 97"
|
||||
represents: "us/states/ok/districts/house/97"
|
||||
tenure:
|
||||
start: "2025-06-18"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 97 (OK State House of Representatives District 97).
|
||||
|
||||
Represents [OK State House of Representatives District 97](/us/states/ok/districts/house/97.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 2"
|
||||
represents: "us/states/ok/districts/senate/2"
|
||||
tenure:
|
||||
start: "2022-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 2 (OK State Senate District 2).
|
||||
|
||||
Represents [OK State Senate District 2](/us/states/ok/districts/senate/2.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 71"
|
||||
represents: "us/states/ok/districts/house/71"
|
||||
tenure:
|
||||
start: "2025-06-18"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 71 (OK State House of Representatives District 71).
|
||||
|
||||
Represents [OK State House of Representatives District 71](/us/states/ok/districts/house/71.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 94"
|
||||
represents: "us/states/ok/districts/house/94"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 94 (OK State House of Representatives District 94).
|
||||
|
||||
Represents [OK State House of Representatives District 94](/us/states/ok/districts/house/94.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 45"
|
||||
represents: "us/states/ok/districts/house/45"
|
||||
tenure:
|
||||
start: "2022-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 45 (OK State House of Representatives District 45).
|
||||
|
||||
Represents [OK State House of Representatives District 45](/us/states/ok/districts/house/45.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 57"
|
||||
represents: "us/states/ok/districts/house/57"
|
||||
tenure:
|
||||
start: "2020-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 57 (OK State House of Representatives District 57).
|
||||
|
||||
Represents [OK State House of Representatives District 57](/us/states/ok/districts/house/57.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 89"
|
||||
represents: "us/states/ok/districts/house/89"
|
||||
tenure:
|
||||
start: "2022-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 89 (OK State House of Representatives District 89).
|
||||
|
||||
Represents [OK State House of Representatives District 89](/us/states/ok/districts/house/89.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 9"
|
||||
represents: "us/states/ok/districts/senate/9"
|
||||
tenure:
|
||||
start: "2024-11-20"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 9 (OK State Senate District 9).
|
||||
|
||||
Represents [OK State Senate District 9](/us/states/ok/districts/senate/9.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 10"
|
||||
represents: "us/states/ok/districts/senate/10"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 10 (OK State Senate District 10).
|
||||
|
||||
Represents [OK State Senate District 10](/us/states/ok/districts/senate/10.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 4"
|
||||
represents: "us/states/ok/districts/house/4"
|
||||
tenure:
|
||||
start: "2020-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 4 (OK State House of Representatives District 4).
|
||||
|
||||
Represents [OK State House of Representatives District 4](/us/states/ok/districts/house/4.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 51"
|
||||
represents: "us/states/ok/districts/house/51"
|
||||
tenure:
|
||||
start: "2018-03-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 51 (OK State House of Representatives District 51).
|
||||
|
||||
Represents [OK State House of Representatives District 51](/us/states/ok/districts/house/51.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 42"
|
||||
represents: "us/states/ok/districts/senate/42"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 42 (OK State Senate District 42).
|
||||
|
||||
Represents [OK State Senate District 42](/us/states/ok/districts/senate/42.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 38"
|
||||
represents: "us/states/ok/districts/senate/38"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 38 (OK State Senate District 38).
|
||||
|
||||
Represents [OK State Senate District 38](/us/states/ok/districts/senate/38.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 25"
|
||||
represents: "us/states/ok/districts/senate/25"
|
||||
tenure:
|
||||
start: "2024-11-20"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 25 (OK State Senate District 25).
|
||||
|
||||
Represents [OK State Senate District 25](/us/states/ok/districts/senate/25.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 47"
|
||||
represents: "us/states/ok/districts/house/47"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 47 (OK State House of Representatives District 47).
|
||||
|
||||
Represents [OK State House of Representatives District 47](/us/states/ok/districts/house/47.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 8"
|
||||
represents: "us/states/ok/districts/senate/8"
|
||||
tenure:
|
||||
start: "2025-05-21"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 8 (OK State Senate District 8).
|
||||
|
||||
Represents [OK State Senate District 8](/us/states/ok/districts/senate/8.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 58"
|
||||
represents: "us/states/ok/districts/house/58"
|
||||
tenure:
|
||||
start: "2016-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 58 (OK State House of Representatives District 58).
|
||||
|
||||
Represents [OK State House of Representatives District 58](/us/states/ok/districts/house/58.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 40"
|
||||
represents: "us/states/ok/districts/senate/40"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 40 (OK State Senate District 40).
|
||||
|
||||
Represents [OK State Senate District 40](/us/states/ok/districts/senate/40.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 27"
|
||||
represents: "us/states/ok/districts/senate/27"
|
||||
tenure:
|
||||
start: "2018-02-26"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 27 (OK State Senate District 27).
|
||||
|
||||
Represents [OK State Senate District 27](/us/states/ok/districts/senate/27.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 40"
|
||||
represents: "us/states/ok/districts/house/40"
|
||||
tenure:
|
||||
start: "2014-11-19"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 40 (OK State House of Representatives District 40).
|
||||
|
||||
Represents [OK State House of Representatives District 40](/us/states/ok/districts/house/40.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 24"
|
||||
represents: "us/states/ok/districts/house/24"
|
||||
tenure:
|
||||
start: "2022-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 24 (OK State House of Representatives District 24).
|
||||
|
||||
Represents [OK State House of Representatives District 24](/us/states/ok/districts/house/24.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 91"
|
||||
represents: "us/states/ok/districts/house/91"
|
||||
tenure:
|
||||
start: "2025-01-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 91 (OK State House of Representatives District 91).
|
||||
|
||||
Represents [OK State House of Representatives District 91](/us/states/ok/districts/house/91.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 14"
|
||||
represents: "us/states/ok/districts/house/14"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 14 (OK State House of Representatives District 14).
|
||||
|
||||
Represents [OK State House of Representatives District 14](/us/states/ok/districts/house/14.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 33"
|
||||
represents: "us/states/ok/districts/senate/33"
|
||||
tenure:
|
||||
start: "2024-11-20"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 33 (OK State Senate District 33).
|
||||
|
||||
Represents [OK State Senate District 33](/us/states/ok/districts/senate/33.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 20"
|
||||
represents: "us/states/ok/districts/senate/20"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 20 (OK State Senate District 20).
|
||||
|
||||
Represents [OK State Senate District 20](/us/states/ok/districts/senate/20.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 42"
|
||||
represents: "us/states/ok/districts/house/42"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 42 (OK State House of Representatives District 42).
|
||||
|
||||
Represents [OK State House of Representatives District 42](/us/states/ok/districts/house/42.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 66"
|
||||
represents: "us/states/ok/districts/house/66"
|
||||
tenure:
|
||||
start: "2022-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 66 (OK State House of Representatives District 66).
|
||||
|
||||
Represents [OK State House of Representatives District 66](/us/states/ok/districts/house/66.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 21"
|
||||
represents: "us/states/ok/districts/house/21"
|
||||
tenure:
|
||||
start: "2022-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 21 (OK State House of Representatives District 21).
|
||||
|
||||
Represents [OK State House of Representatives District 21](/us/states/ok/districts/house/21.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 31"
|
||||
represents: "us/states/ok/districts/house/31"
|
||||
tenure:
|
||||
start: "2022-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 31 (OK State House of Representatives District 31).
|
||||
|
||||
Represents [OK State House of Representatives District 31](/us/states/ok/districts/house/31.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 85"
|
||||
represents: "us/states/ok/districts/house/85"
|
||||
tenure:
|
||||
start: "2015-09-17"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 85 (OK State House of Representatives District 85).
|
||||
|
||||
Represents [OK State House of Representatives District 85](/us/states/ok/districts/house/85.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 34"
|
||||
represents: "us/states/ok/districts/senate/34"
|
||||
tenure:
|
||||
start: "2022-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 34 (OK State Senate District 34).
|
||||
|
||||
Represents [OK State Senate District 34](/us/states/ok/districts/senate/34.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 62"
|
||||
represents: "us/states/ok/districts/house/62"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 62 (OK State House of Representatives District 62).
|
||||
|
||||
Represents [OK State House of Representatives District 62](/us/states/ok/districts/house/62.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 27"
|
||||
represents: "us/states/ok/districts/house/27"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 27 (OK State House of Representatives District 27).
|
||||
|
||||
Represents [OK State House of Representatives District 27](/us/states/ok/districts/house/27.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 28"
|
||||
represents: "us/states/ok/districts/house/28"
|
||||
tenure:
|
||||
start: "2020-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 28 (OK State House of Representatives District 28).
|
||||
|
||||
Represents [OK State House of Representatives District 28](/us/states/ok/districts/house/28.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 26"
|
||||
represents: "us/states/ok/districts/senate/26"
|
||||
tenure:
|
||||
start: "2014-11-19"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 26 (OK State Senate District 26).
|
||||
|
||||
Represents [OK State Senate District 26](/us/states/ok/districts/senate/26.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 24"
|
||||
represents: "us/states/ok/districts/senate/24"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 24 (OK State Senate District 24).
|
||||
|
||||
Represents [OK State Senate District 24](/us/states/ok/districts/senate/24.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 39"
|
||||
represents: "us/states/ok/districts/senate/39"
|
||||
tenure:
|
||||
start: "2016-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 39 (OK State Senate District 39).
|
||||
|
||||
Represents [OK State Senate District 39](/us/states/ok/districts/senate/39.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 6"
|
||||
represents: "us/states/ok/districts/senate/6"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 6 (OK State Senate District 6).
|
||||
|
||||
Represents [OK State Senate District 6](/us/states/ok/districts/senate/6.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 86"
|
||||
represents: "us/states/ok/districts/house/86"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 86 (OK State House of Representatives District 86).
|
||||
|
||||
Represents [OK State House of Representatives District 86](/us/states/ok/districts/house/86.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 18"
|
||||
represents: "us/states/ok/districts/house/18"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 18 (OK State House of Representatives District 18).
|
||||
|
||||
Represents [OK State House of Representatives District 18](/us/states/ok/districts/house/18.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 26"
|
||||
represents: "us/states/ok/districts/house/26"
|
||||
tenure:
|
||||
start: "2016-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 26 (OK State House of Representatives District 26).
|
||||
|
||||
Represents [OK State House of Representatives District 26](/us/states/ok/districts/house/26.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 41"
|
||||
represents: "us/states/ok/districts/house/41"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 41 (OK State House of Representatives District 41).
|
||||
|
||||
Represents [OK State House of Representatives District 41](/us/states/ok/districts/house/41.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 23"
|
||||
represents: "us/states/ok/districts/house/23"
|
||||
tenure:
|
||||
start: "2024-11-20"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 23 (OK State House of Representatives District 23).
|
||||
|
||||
Represents [OK State House of Representatives District 23](/us/states/ok/districts/house/23.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 56"
|
||||
represents: "us/states/ok/districts/house/56"
|
||||
tenure:
|
||||
start: "2020-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 56 (OK State House of Representatives District 56).
|
||||
|
||||
Represents [OK State House of Representatives District 56](/us/states/ok/districts/house/56.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 35"
|
||||
represents: "us/states/ok/districts/house/35"
|
||||
tenure:
|
||||
start: "2026-02-18"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 35 (OK State House of Representatives District 35).
|
||||
|
||||
Represents [OK State House of Representatives District 35](/us/states/ok/districts/house/35.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 32"
|
||||
represents: "us/states/ok/districts/senate/32"
|
||||
tenure:
|
||||
start: "2023-12-20"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 32 (OK State Senate District 32).
|
||||
|
||||
Represents [OK State Senate District 32](/us/states/ok/districts/senate/32.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 1"
|
||||
represents: "us/states/ok/districts/house/1"
|
||||
tenure:
|
||||
start: "2020-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 1 (OK State House of Representatives District 1).
|
||||
|
||||
Represents [OK State House of Representatives District 1](/us/states/ok/districts/house/1.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 88"
|
||||
represents: "us/states/ok/districts/house/88"
|
||||
tenure:
|
||||
start: "2024-11-20"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 88 (OK State House of Representatives District 88).
|
||||
|
||||
Represents [OK State House of Representatives District 88](/us/states/ok/districts/house/88.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 87"
|
||||
represents: "us/states/ok/districts/house/87"
|
||||
tenure:
|
||||
start: "2022-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 87 (OK State House of Representatives District 87).
|
||||
|
||||
Represents [OK State House of Representatives District 87](/us/states/ok/districts/house/87.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 90"
|
||||
represents: "us/states/ok/districts/house/90"
|
||||
tenure:
|
||||
start: "2024-11-20"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 90 (OK State House of Representatives District 90).
|
||||
|
||||
Represents [OK State House of Representatives District 90](/us/states/ok/districts/house/90.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 83"
|
||||
represents: "us/states/ok/districts/house/83"
|
||||
tenure:
|
||||
start: "2020-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 83 (OK State House of Representatives District 83).
|
||||
|
||||
Represents [OK State House of Representatives District 83](/us/states/ok/districts/house/83.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 39"
|
||||
represents: "us/states/ok/districts/house/39"
|
||||
tenure:
|
||||
start: "2024-02-21"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 39 (OK State House of Representatives District 39).
|
||||
|
||||
Represents [OK State House of Representatives District 39](/us/states/ok/districts/house/39.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 98"
|
||||
represents: "us/states/ok/districts/house/98"
|
||||
tenure:
|
||||
start: "2024-11-20"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 98 (OK State House of Representatives District 98).
|
||||
|
||||
Represents [OK State House of Representatives District 98](/us/states/ok/districts/house/98.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 5"
|
||||
represents: "us/states/ok/districts/senate/5"
|
||||
tenure:
|
||||
start: "2020-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 5 (OK State Senate District 5).
|
||||
|
||||
Represents [OK State Senate District 5](/us/states/ok/districts/senate/5.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 52"
|
||||
represents: "us/states/ok/districts/house/52"
|
||||
tenure:
|
||||
start: "2020-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 52 (OK State House of Representatives District 52).
|
||||
|
||||
Represents [OK State House of Representatives District 52](/us/states/ok/districts/house/52.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 28"
|
||||
represents: "us/states/ok/districts/senate/28"
|
||||
tenure:
|
||||
start: "2022-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 28 (OK State Senate District 28).
|
||||
|
||||
Represents [OK State Senate District 28](/us/states/ok/districts/senate/28.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 18"
|
||||
represents: "us/states/ok/districts/senate/18"
|
||||
tenure:
|
||||
start: "2022-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 18 (OK State Senate District 18).
|
||||
|
||||
Represents [OK State Senate District 18](/us/states/ok/districts/senate/18.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 46"
|
||||
represents: "us/states/ok/districts/house/46"
|
||||
tenure:
|
||||
start: "2017-09-20"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 46 (OK State House of Representatives District 46).
|
||||
|
||||
Represents [OK State House of Representatives District 46](/us/states/ok/districts/house/46.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 44"
|
||||
represents: "us/states/ok/districts/house/44"
|
||||
tenure:
|
||||
start: "2022-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 44 (OK State House of Representatives District 44).
|
||||
|
||||
Represents [OK State House of Representatives District 44](/us/states/ok/districts/house/44.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 53"
|
||||
represents: "us/states/ok/districts/house/53"
|
||||
tenure:
|
||||
start: "2024-11-20"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 53 (OK State House of Representatives District 53).
|
||||
|
||||
Represents [OK State House of Representatives District 53](/us/states/ok/districts/house/53.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 43"
|
||||
represents: "us/states/ok/districts/house/43"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 43 (OK State House of Representatives District 43).
|
||||
|
||||
Represents [OK State House of Representatives District 43](/us/states/ok/districts/house/43.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 14"
|
||||
represents: "us/states/ok/districts/senate/14"
|
||||
tenure:
|
||||
start: "2022-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 14 (OK State Senate District 14).
|
||||
|
||||
Represents [OK State Senate District 14](/us/states/ok/districts/senate/14.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 17"
|
||||
represents: "us/states/ok/districts/house/17"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 17 (OK State House of Representatives District 17).
|
||||
|
||||
Represents [OK State House of Representatives District 17](/us/states/ok/districts/house/17.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 2"
|
||||
represents: "us/states/ok/districts/house/2"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 2 (OK State House of Representatives District 2).
|
||||
|
||||
Represents [OK State House of Representatives District 2](/us/states/ok/districts/house/2.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 32"
|
||||
represents: "us/states/ok/districts/house/32"
|
||||
tenure:
|
||||
start: "2024-11-20"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 32 (OK State House of Representatives District 32).
|
||||
|
||||
Represents [OK State House of Representatives District 32](/us/states/ok/districts/house/32.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 35"
|
||||
represents: "us/states/ok/districts/senate/35"
|
||||
tenure:
|
||||
start: "2020-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 35 (OK State Senate District 35).
|
||||
|
||||
Represents [OK State Senate District 35](/us/states/ok/districts/senate/35.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 36"
|
||||
represents: "us/states/ok/districts/house/36"
|
||||
tenure:
|
||||
start: "2022-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 36 (OK State House of Representatives District 36).
|
||||
|
||||
Represents [OK State House of Representatives District 36](/us/states/ok/districts/house/36.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 36"
|
||||
represents: "us/states/ok/districts/senate/36"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 36 (OK State Senate District 36).
|
||||
|
||||
Represents [OK State Senate District 36](/us/states/ok/districts/senate/36.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 11"
|
||||
represents: "us/states/ok/districts/house/11"
|
||||
tenure:
|
||||
start: "2022-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 11 (OK State House of Representatives District 11).
|
||||
|
||||
Represents [OK State House of Representatives District 11](/us/states/ok/districts/house/11.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 38"
|
||||
represents: "us/states/ok/districts/house/38"
|
||||
tenure:
|
||||
start: "2014-11-18"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 38 (OK State House of Representatives District 38).
|
||||
|
||||
Represents [OK State House of Representatives District 38](/us/states/ok/districts/house/38.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 77"
|
||||
represents: "us/states/ok/districts/house/77"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 77 (OK State House of Representatives District 77).
|
||||
|
||||
Represents [OK State House of Representatives District 77](/us/states/ok/districts/house/77.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 20"
|
||||
represents: "us/states/ok/districts/house/20"
|
||||
tenure:
|
||||
start: "2024-11-20"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 20 (OK State House of Representatives District 20).
|
||||
|
||||
Represents [OK State House of Representatives District 20](/us/states/ok/districts/house/20.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 13"
|
||||
represents: "us/states/ok/districts/senate/13"
|
||||
tenure:
|
||||
start: "2024-11-20"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 13 (OK State Senate District 13).
|
||||
|
||||
Represents [OK State Senate District 13](/us/states/ok/districts/senate/13.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 49"
|
||||
represents: "us/states/ok/districts/house/49"
|
||||
tenure:
|
||||
start: "2022-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 49 (OK State House of Representatives District 49).
|
||||
|
||||
Represents [OK State House of Representatives District 49](/us/states/ok/districts/house/49.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 5"
|
||||
represents: "us/states/ok/districts/house/5"
|
||||
tenure:
|
||||
start: "2016-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 5 (OK State House of Representatives District 5).
|
||||
|
||||
Represents [OK State House of Representatives District 5](/us/states/ok/districts/house/5.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 10"
|
||||
represents: "us/states/ok/districts/house/10"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 10 (OK State House of Representatives District 10).
|
||||
|
||||
Represents [OK State House of Representatives District 10](/us/states/ok/districts/house/10.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 30"
|
||||
represents: "us/states/ok/districts/senate/30"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 30 (OK State Senate District 30).
|
||||
|
||||
Represents [OK State Senate District 30](/us/states/ok/districts/senate/30.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 29"
|
||||
represents: "us/states/ok/districts/senate/29"
|
||||
tenure:
|
||||
start: "2016-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 29 (OK State Senate District 29).
|
||||
|
||||
Represents [OK State Senate District 29](/us/states/ok/districts/senate/29.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 3"
|
||||
represents: "us/states/ok/districts/senate/3"
|
||||
tenure:
|
||||
start: "2024-11-20"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 3 (OK State Senate District 3).
|
||||
|
||||
Represents [OK State Senate District 3](/us/states/ok/districts/senate/3.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 19"
|
||||
represents: "us/states/ok/districts/house/19"
|
||||
tenure:
|
||||
start: "2016-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 19 (OK State House of Representatives District 19).
|
||||
|
||||
Represents [OK State House of Representatives District 19](/us/states/ok/districts/house/19.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 47"
|
||||
represents: "us/states/ok/districts/senate/47"
|
||||
tenure:
|
||||
start: "2024-11-20"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 47 (OK State Senate District 47).
|
||||
|
||||
Represents [OK State Senate District 47](/us/states/ok/districts/senate/47.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 37"
|
||||
represents: "us/states/ok/districts/house/37"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 37 (OK State House of Representatives District 37).
|
||||
|
||||
Represents [OK State House of Representatives District 37](/us/states/ok/districts/house/37.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 43"
|
||||
represents: "us/states/ok/districts/senate/43"
|
||||
tenure:
|
||||
start: "2024-11-20"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 43 (OK State Senate District 43).
|
||||
|
||||
Represents [OK State Senate District 43](/us/states/ok/districts/senate/43.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 61"
|
||||
represents: "us/states/ok/districts/house/61"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 61 (OK State House of Representatives District 61).
|
||||
|
||||
Represents [OK State House of Representatives District 61](/us/states/ok/districts/house/61.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 74"
|
||||
represents: "us/states/ok/districts/house/74"
|
||||
tenure:
|
||||
start: "2025-06-18"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 74 (OK State House of Representatives District 74).
|
||||
|
||||
Represents [OK State House of Representatives District 74](/us/states/ok/districts/house/74.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 54"
|
||||
represents: "us/states/ok/districts/house/54"
|
||||
tenure:
|
||||
start: "2016-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 54 (OK State House of Representatives District 54).
|
||||
|
||||
Represents [OK State House of Representatives District 54](/us/states/ok/districts/house/54.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 22"
|
||||
represents: "us/states/ok/districts/senate/22"
|
||||
tenure:
|
||||
start: "2022-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 22 (OK State Senate District 22).
|
||||
|
||||
Represents [OK State Senate District 22](/us/states/ok/districts/senate/22.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 29"
|
||||
represents: "us/states/ok/districts/house/29"
|
||||
tenure:
|
||||
start: "2016-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 29 (OK State House of Representatives District 29).
|
||||
|
||||
Represents [OK State House of Representatives District 29](/us/states/ok/districts/house/29.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 15"
|
||||
represents: "us/states/ok/districts/senate/15"
|
||||
tenure:
|
||||
start: "2024-11-20"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 15 (OK State Senate District 15).
|
||||
|
||||
Represents [OK State Senate District 15](/us/states/ok/districts/senate/15.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 23"
|
||||
represents: "us/states/ok/districts/senate/23"
|
||||
tenure:
|
||||
start: "2016-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 23 (OK State Senate District 23).
|
||||
|
||||
Represents [OK State Senate District 23](/us/states/ok/districts/senate/23.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 100"
|
||||
represents: "us/states/ok/districts/house/100"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 100 (OK State House of Representatives District 100).
|
||||
|
||||
Represents [OK State House of Representatives District 100](/us/states/ok/districts/house/100.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 12"
|
||||
represents: "us/states/ok/districts/house/12"
|
||||
tenure:
|
||||
start: "2024-11-20"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 12 (OK State House of Representatives District 12).
|
||||
|
||||
Represents [OK State House of Representatives District 12](/us/states/ok/districts/house/12.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 30"
|
||||
represents: "us/states/ok/districts/house/30"
|
||||
tenure:
|
||||
start: "2016-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 30 (OK State House of Representatives District 30).
|
||||
|
||||
Represents [OK State House of Representatives District 30](/us/states/ok/districts/house/30.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 9"
|
||||
represents: "us/states/ok/districts/house/9"
|
||||
tenure:
|
||||
start: "2014-11-18"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 9 (OK State House of Representatives District 9).
|
||||
|
||||
Represents [OK State House of Representatives District 9](/us/states/ok/districts/house/9.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 46"
|
||||
represents: "us/states/ok/districts/senate/46"
|
||||
tenure:
|
||||
start: "2024-11-13"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 46 (OK State Senate District 46).
|
||||
|
||||
Represents [OK State Senate District 46](/us/states/ok/districts/senate/46.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 69"
|
||||
represents: "us/states/ok/districts/house/69"
|
||||
tenure:
|
||||
start: "2022-11-23"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 69 (OK State House of Representatives District 69).
|
||||
|
||||
Represents [OK State House of Representatives District 69](/us/states/ok/districts/house/69.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State Senate District 16"
|
||||
represents: "us/states/ok/districts/senate/16"
|
||||
tenure:
|
||||
start: "2018-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK Senate District 16 (OK State Senate District 16).
|
||||
|
||||
Represents [OK State Senate District 16](/us/states/ok/districts/senate/16.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "OK"
|
||||
district: "OK State House of Representatives District 95"
|
||||
represents: "us/states/ok/districts/house/95"
|
||||
tenure:
|
||||
start: "2020-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current OK House District 95 (OK State House of Representatives District 95).
|
||||
|
||||
Represents [OK State House of Representatives District 95](/us/states/ok/districts/house/95.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