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: "FL"
|
||||
district: "FL State House of Representatives District 57"
|
||||
represents: "us/states/fl/districts/house/57"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 57 (FL State House of Representatives District 57).
|
||||
|
||||
Represents [FL State House of Representatives District 57](/us/states/fl/districts/house/57.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 80"
|
||||
represents: "us/states/fl/districts/house/80"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 80 (FL State House of Representatives District 80).
|
||||
|
||||
Represents [FL State House of Representatives District 80](/us/states/fl/districts/house/80.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 2"
|
||||
represents: "us/states/fl/districts/house/2"
|
||||
tenure:
|
||||
start: "2018-11-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 2 (FL State House of Representatives District 2).
|
||||
|
||||
Represents [FL State House of Representatives District 2](/us/states/fl/districts/house/2.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 112"
|
||||
represents: "us/states/fl/districts/house/112"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 112 (FL State House of Representatives District 112).
|
||||
|
||||
Represents [FL State House of Representatives District 112](/us/states/fl/districts/house/112.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 38"
|
||||
represents: "us/states/fl/districts/senate/38"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 38 (FL State Senate District 38).
|
||||
|
||||
Represents [FL State Senate District 38](/us/states/fl/districts/senate/38.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 9"
|
||||
represents: "us/states/fl/districts/house/9"
|
||||
tenure:
|
||||
start: "2020-11-03"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 9 (FL State House of Representatives District 9).
|
||||
|
||||
Represents [FL State House of Representatives District 9](/us/states/fl/districts/house/9.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 40"
|
||||
represents: "us/states/fl/districts/senate/40"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 40 (FL State Senate District 40).
|
||||
|
||||
Represents [FL State Senate District 40](/us/states/fl/districts/senate/40.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 13"
|
||||
represents: "us/states/fl/districts/house/13"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 13 (FL State House of Representatives District 13).
|
||||
|
||||
Represents [FL State House of Representatives District 13](/us/states/fl/districts/house/13.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 42"
|
||||
represents: "us/states/fl/districts/house/42"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 42 (FL State House of Representatives District 42).
|
||||
|
||||
Represents [FL State House of Representatives District 42](/us/states/fl/districts/house/42.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 93"
|
||||
represents: "us/states/fl/districts/house/93"
|
||||
tenure:
|
||||
start: "2024-11-05"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 93 (FL State House of Representatives District 93).
|
||||
|
||||
Represents [FL State House of Representatives District 93](/us/states/fl/districts/house/93.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 109"
|
||||
represents: "us/states/fl/districts/house/109"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 109 (FL State House of Representatives District 109).
|
||||
|
||||
Represents [FL State House of Representatives District 109](/us/states/fl/districts/house/109.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 35"
|
||||
represents: "us/states/fl/districts/senate/35"
|
||||
tenure:
|
||||
start: "2024-11-05"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 35 (FL State Senate District 35).
|
||||
|
||||
Represents [FL State Senate District 35](/us/states/fl/districts/senate/35.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 27"
|
||||
represents: "us/states/fl/districts/senate/27"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 27 (FL State Senate District 27).
|
||||
|
||||
Represents [FL State Senate District 27](/us/states/fl/districts/senate/27.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 59"
|
||||
represents: "us/states/fl/districts/house/59"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 59 (FL State House of Representatives District 59).
|
||||
|
||||
Represents [FL State House of Representatives District 59](/us/states/fl/districts/house/59.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 72"
|
||||
represents: "us/states/fl/districts/house/72"
|
||||
tenure:
|
||||
start: "2024-11-05"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 72 (FL State House of Representatives District 72).
|
||||
|
||||
Represents [FL State House of Representatives District 72](/us/states/fl/districts/house/72.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 28"
|
||||
represents: "us/states/fl/districts/house/28"
|
||||
tenure:
|
||||
start: "2024-11-05"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 28 (FL State House of Representatives District 28).
|
||||
|
||||
Represents [FL State House of Representatives District 28](/us/states/fl/districts/house/28.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 56"
|
||||
represents: "us/states/fl/districts/house/56"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 56 (FL State House of Representatives District 56).
|
||||
|
||||
Represents [FL State House of Representatives District 56](/us/states/fl/districts/house/56.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 32"
|
||||
represents: "us/states/fl/districts/house/32"
|
||||
tenure:
|
||||
start: "2025-06-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 32 (FL State House of Representatives District 32).
|
||||
|
||||
Represents [FL State House of Representatives District 32](/us/states/fl/districts/house/32.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 14"
|
||||
represents: "us/states/fl/districts/senate/14"
|
||||
tenure:
|
||||
start: "2026-03-24"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 14 (FL State Senate District 14).
|
||||
|
||||
Represents [FL State Senate District 14](/us/states/fl/districts/senate/14.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 41"
|
||||
represents: "us/states/fl/districts/house/41"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 41 (FL State House of Representatives District 41).
|
||||
|
||||
Represents [FL State House of Representatives District 41](/us/states/fl/districts/house/41.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 39"
|
||||
represents: "us/states/fl/districts/senate/39"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 39 (FL State Senate District 39).
|
||||
|
||||
Represents [FL State Senate District 39](/us/states/fl/districts/senate/39.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 17"
|
||||
represents: "us/states/fl/districts/senate/17"
|
||||
tenure:
|
||||
start: "2024-11-05"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 17 (FL State Senate District 17).
|
||||
|
||||
Represents [FL State Senate District 17](/us/states/fl/districts/senate/17.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 22"
|
||||
represents: "us/states/fl/districts/house/22"
|
||||
tenure:
|
||||
start: "2024-11-05"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 22 (FL State House of Representatives District 22).
|
||||
|
||||
Represents [FL State House of Representatives District 22](/us/states/fl/districts/house/22.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 30"
|
||||
represents: "us/states/fl/districts/house/30"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 30 (FL State House of Representatives District 30).
|
||||
|
||||
Represents [FL State House of Representatives District 30](/us/states/fl/districts/house/30.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 100"
|
||||
represents: "us/states/fl/districts/house/100"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 100 (FL State House of Representatives District 100).
|
||||
|
||||
Represents [FL State House of Representatives District 100](/us/states/fl/districts/house/100.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 95"
|
||||
represents: "us/states/fl/districts/house/95"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 95 (FL State House of Representatives District 95).
|
||||
|
||||
Represents [FL State House of Representatives District 95](/us/states/fl/districts/house/95.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 10"
|
||||
represents: "us/states/fl/districts/house/10"
|
||||
tenure:
|
||||
start: "2018-11-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 10 (FL State House of Representatives District 10).
|
||||
|
||||
Represents [FL State House of Representatives District 10](/us/states/fl/districts/house/10.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 4"
|
||||
represents: "us/states/fl/districts/senate/4"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 4 (FL State Senate District 4).
|
||||
|
||||
Represents [FL State Senate District 4](/us/states/fl/districts/senate/4.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 12"
|
||||
represents: "us/states/fl/districts/senate/12"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 12 (FL State Senate District 12).
|
||||
|
||||
Represents [FL State Senate District 12](/us/states/fl/districts/senate/12.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 3"
|
||||
represents: "us/states/fl/districts/senate/3"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 3 (FL State Senate District 3).
|
||||
|
||||
Represents [FL State Senate District 3](/us/states/fl/districts/senate/3.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 96"
|
||||
represents: "us/states/fl/districts/house/96"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 96 (FL State House of Representatives District 96).
|
||||
|
||||
Represents [FL State House of Representatives District 96](/us/states/fl/districts/house/96.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 84"
|
||||
represents: "us/states/fl/districts/house/84"
|
||||
tenure:
|
||||
start: "2020-11-03"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 84 (FL State House of Representatives District 84).
|
||||
|
||||
Represents [FL State House of Representatives District 84](/us/states/fl/districts/house/84.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 116"
|
||||
represents: "us/states/fl/districts/house/116"
|
||||
tenure:
|
||||
start: "2017-09-26"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 116 (FL State House of Representatives District 116).
|
||||
|
||||
Represents [FL State House of Representatives District 116](/us/states/fl/districts/house/116.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 69"
|
||||
represents: "us/states/fl/districts/house/69"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 69 (FL State House of Representatives District 69).
|
||||
|
||||
Represents [FL State House of Representatives District 69](/us/states/fl/districts/house/69.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 23"
|
||||
represents: "us/states/fl/districts/senate/23"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 23 (FL State Senate District 23).
|
||||
|
||||
Represents [FL State Senate District 23](/us/states/fl/districts/senate/23.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 75"
|
||||
represents: "us/states/fl/districts/house/75"
|
||||
tenure:
|
||||
start: "2024-11-05"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 75 (FL State House of Representatives District 75).
|
||||
|
||||
Represents [FL State House of Representatives District 75](/us/states/fl/districts/house/75.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 16"
|
||||
represents: "us/states/fl/districts/senate/16"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 16 (FL State Senate District 16).
|
||||
|
||||
Represents [FL State Senate District 16](/us/states/fl/districts/senate/16.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 99"
|
||||
represents: "us/states/fl/districts/house/99"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 99 (FL State House of Representatives District 99).
|
||||
|
||||
Represents [FL State House of Representatives District 99](/us/states/fl/districts/house/99.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 38"
|
||||
represents: "us/states/fl/districts/house/38"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 38 (FL State House of Representatives District 38).
|
||||
|
||||
Represents [FL State House of Representatives District 38](/us/states/fl/districts/house/38.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 111"
|
||||
represents: "us/states/fl/districts/house/111"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 111 (FL State House of Representatives District 111).
|
||||
|
||||
Represents [FL State House of Representatives District 111](/us/states/fl/districts/house/111.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 15"
|
||||
represents: "us/states/fl/districts/house/15"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 15 (FL State House of Representatives District 15).
|
||||
|
||||
Represents [FL State House of Representatives District 15](/us/states/fl/districts/house/15.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 19"
|
||||
represents: "us/states/fl/districts/senate/19"
|
||||
tenure:
|
||||
start: "2025-06-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 19 (FL State Senate District 19).
|
||||
|
||||
Represents [FL State Senate District 19](/us/states/fl/districts/senate/19.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 89"
|
||||
represents: "us/states/fl/districts/house/89"
|
||||
tenure:
|
||||
start: "2024-11-05"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 89 (FL State House of Representatives District 89).
|
||||
|
||||
Represents [FL State House of Representatives District 89](/us/states/fl/districts/house/89.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 114"
|
||||
represents: "us/states/fl/districts/house/114"
|
||||
tenure:
|
||||
start: "2020-11-03"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 114 (FL State House of Representatives District 114).
|
||||
|
||||
Represents [FL State House of Representatives District 114](/us/states/fl/districts/house/114.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 63"
|
||||
represents: "us/states/fl/districts/house/63"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 63 (FL State House of Representatives District 63).
|
||||
|
||||
Represents [FL State House of Representatives District 63](/us/states/fl/districts/house/63.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 1"
|
||||
represents: "us/states/fl/districts/senate/1"
|
||||
tenure:
|
||||
start: "2024-11-05"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 1 (FL State Senate District 1).
|
||||
|
||||
Represents [FL State Senate District 1](/us/states/fl/districts/senate/1.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 108"
|
||||
represents: "us/states/fl/districts/house/108"
|
||||
tenure:
|
||||
start: "2018-11-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 108 (FL State House of Representatives District 108).
|
||||
|
||||
Represents [FL State House of Representatives District 108](/us/states/fl/districts/house/108.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 39"
|
||||
represents: "us/states/fl/districts/house/39"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 39 (FL State House of Representatives District 39).
|
||||
|
||||
Represents [FL State House of Representatives District 39](/us/states/fl/districts/house/39.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 21"
|
||||
represents: "us/states/fl/districts/senate/21"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 21 (FL State Senate District 21).
|
||||
|
||||
Represents [FL State Senate District 21](/us/states/fl/districts/senate/21.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 87"
|
||||
represents: "us/states/fl/districts/house/87"
|
||||
tenure:
|
||||
start: "2026-03-24"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 87 (FL State House of Representatives District 87).
|
||||
|
||||
Represents [FL State House of Representatives District 87](/us/states/fl/districts/house/87.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 35"
|
||||
represents: "us/states/fl/districts/house/35"
|
||||
tenure:
|
||||
start: "2024-11-05"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 35 (FL State House of Representatives District 35).
|
||||
|
||||
Represents [FL State House of Representatives District 35](/us/states/fl/districts/house/35.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 29"
|
||||
represents: "us/states/fl/districts/senate/29"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 29 (FL State Senate District 29).
|
||||
|
||||
Represents [FL State Senate District 29](/us/states/fl/districts/senate/29.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 106"
|
||||
represents: "us/states/fl/districts/house/106"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 106 (FL State House of Representatives District 106).
|
||||
|
||||
Represents [FL State House of Representatives District 106](/us/states/fl/districts/house/106.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 104"
|
||||
represents: "us/states/fl/districts/house/104"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 104 (FL State House of Representatives District 104).
|
||||
|
||||
Represents [FL State House of Representatives District 104](/us/states/fl/districts/house/104.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 67"
|
||||
represents: "us/states/fl/districts/house/67"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 67 (FL State House of Representatives District 67).
|
||||
|
||||
Represents [FL State House of Representatives District 67](/us/states/fl/districts/house/67.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 73"
|
||||
represents: "us/states/fl/districts/house/73"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 73 (FL State House of Representatives District 73).
|
||||
|
||||
Represents [FL State House of Representatives District 73](/us/states/fl/districts/house/73.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 8"
|
||||
represents: "us/states/fl/districts/house/8"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 8 (FL State House of Representatives District 8).
|
||||
|
||||
Represents [FL State House of Representatives District 8](/us/states/fl/districts/house/8.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 31"
|
||||
represents: "us/states/fl/districts/senate/31"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 31 (FL State Senate District 31).
|
||||
|
||||
Represents [FL State Senate District 31](/us/states/fl/districts/senate/31.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 6"
|
||||
represents: "us/states/fl/districts/house/6"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 6 (FL State House of Representatives District 6).
|
||||
|
||||
Represents [FL State House of Representatives District 6](/us/states/fl/districts/house/6.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 51"
|
||||
represents: "us/states/fl/districts/house/51"
|
||||
tenure:
|
||||
start: "2026-03-24"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 51 (FL State House of Representatives District 51).
|
||||
|
||||
Represents [FL State House of Representatives District 51](/us/states/fl/districts/house/51.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 101"
|
||||
represents: "us/states/fl/districts/house/101"
|
||||
tenure:
|
||||
start: "2024-12-27"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 101 (FL State House of Representatives District 101).
|
||||
|
||||
Represents [FL State House of Representatives District 101](/us/states/fl/districts/house/101.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 36"
|
||||
represents: "us/states/fl/districts/senate/36"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 36 (FL State Senate District 36).
|
||||
|
||||
Represents [FL State Senate District 36](/us/states/fl/districts/senate/36.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 23"
|
||||
represents: "us/states/fl/districts/house/23"
|
||||
tenure:
|
||||
start: "2024-11-05"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 23 (FL State House of Representatives District 23).
|
||||
|
||||
Represents [FL State House of Representatives District 23](/us/states/fl/districts/house/23.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 74"
|
||||
represents: "us/states/fl/districts/house/74"
|
||||
tenure:
|
||||
start: "2018-11-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 74 (FL State House of Representatives District 74).
|
||||
|
||||
Represents [FL State House of Representatives District 74](/us/states/fl/districts/house/74.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 10"
|
||||
represents: "us/states/fl/districts/senate/10"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 10 (FL State Senate District 10).
|
||||
|
||||
Represents [FL State Senate District 10](/us/states/fl/districts/senate/10.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 37"
|
||||
represents: "us/states/fl/districts/senate/37"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 37 (FL State Senate District 37).
|
||||
|
||||
Represents [FL State Senate District 37](/us/states/fl/districts/senate/37.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 7"
|
||||
represents: "us/states/fl/districts/house/7"
|
||||
tenure:
|
||||
start: "2019-06-19"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 7 (FL State House of Representatives District 7).
|
||||
|
||||
Represents [FL State House of Representatives District 7](/us/states/fl/districts/house/7.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 2"
|
||||
represents: "us/states/fl/districts/senate/2"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 2 (FL State Senate District 2).
|
||||
|
||||
Represents [FL State Senate District 2](/us/states/fl/districts/senate/2.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 53"
|
||||
represents: "us/states/fl/districts/house/53"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 53 (FL State House of Representatives District 53).
|
||||
|
||||
Represents [FL State House of Representatives District 53](/us/states/fl/districts/house/53.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 6"
|
||||
represents: "us/states/fl/districts/senate/6"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 6 (FL State Senate District 6).
|
||||
|
||||
Represents [FL State Senate District 6](/us/states/fl/districts/senate/6.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 50"
|
||||
represents: "us/states/fl/districts/house/50"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 50 (FL State House of Representatives District 50).
|
||||
|
||||
Represents [FL State House of Representatives District 50](/us/states/fl/districts/house/50.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 49"
|
||||
represents: "us/states/fl/districts/house/49"
|
||||
tenure:
|
||||
start: "2024-11-05"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 49 (FL State House of Representatives District 49).
|
||||
|
||||
Represents [FL State House of Representatives District 49](/us/states/fl/districts/house/49.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 17"
|
||||
represents: "us/states/fl/districts/house/17"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 17 (FL State House of Representatives District 17).
|
||||
|
||||
Represents [FL State House of Representatives District 17](/us/states/fl/districts/house/17.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 20"
|
||||
represents: "us/states/fl/districts/senate/20"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 20 (FL State Senate District 20).
|
||||
|
||||
Represents [FL State Senate District 20](/us/states/fl/districts/senate/20.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 120"
|
||||
represents: "us/states/fl/districts/house/120"
|
||||
tenure:
|
||||
start: "2020-11-03"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 120 (FL State House of Representatives District 120).
|
||||
|
||||
Represents [FL State House of Representatives District 120](/us/states/fl/districts/house/120.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 22"
|
||||
represents: "us/states/fl/districts/senate/22"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 22 (FL State Senate District 22).
|
||||
|
||||
Represents [FL State Senate District 22](/us/states/fl/districts/senate/22.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 43"
|
||||
represents: "us/states/fl/districts/house/43"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 43 (FL State House of Representatives District 43).
|
||||
|
||||
Represents [FL State House of Representatives District 43](/us/states/fl/districts/house/43.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 86"
|
||||
represents: "us/states/fl/districts/house/86"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 86 (FL State House of Representatives District 86).
|
||||
|
||||
Represents [FL State House of Representatives District 86](/us/states/fl/districts/house/86.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 48"
|
||||
represents: "us/states/fl/districts/house/48"
|
||||
tenure:
|
||||
start: "2024-11-05"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 48 (FL State House of Representatives District 48).
|
||||
|
||||
Represents [FL State House of Representatives District 48](/us/states/fl/districts/house/48.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 33"
|
||||
represents: "us/states/fl/districts/senate/33"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 33 (FL State Senate District 33).
|
||||
|
||||
Represents [FL State Senate District 33](/us/states/fl/districts/senate/33.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 46"
|
||||
represents: "us/states/fl/districts/house/46"
|
||||
tenure:
|
||||
start: "2024-11-05"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 46 (FL State House of Representatives District 46).
|
||||
|
||||
Represents [FL State House of Representatives District 46](/us/states/fl/districts/house/46.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 119"
|
||||
represents: "us/states/fl/districts/house/119"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 119 (FL State House of Representatives District 119).
|
||||
|
||||
Represents [FL State House of Representatives District 119](/us/states/fl/districts/house/119.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 20"
|
||||
represents: "us/states/fl/districts/house/20"
|
||||
tenure:
|
||||
start: "2024-11-05"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 20 (FL State House of Representatives District 20).
|
||||
|
||||
Represents [FL State House of Representatives District 20](/us/states/fl/districts/house/20.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 65"
|
||||
represents: "us/states/fl/districts/house/65"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 65 (FL State House of Representatives District 65).
|
||||
|
||||
Represents [FL State House of Representatives District 65](/us/states/fl/districts/house/65.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 28"
|
||||
represents: "us/states/fl/districts/senate/28"
|
||||
tenure:
|
||||
start: "2016-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 28 (FL State Senate District 28).
|
||||
|
||||
Represents [FL State Senate District 28](/us/states/fl/districts/senate/28.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 83"
|
||||
represents: "us/states/fl/districts/house/83"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 83 (FL State House of Representatives District 83).
|
||||
|
||||
Represents [FL State House of Representatives District 83](/us/states/fl/districts/house/83.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 13"
|
||||
represents: "us/states/fl/districts/senate/13"
|
||||
tenure:
|
||||
start: "2024-11-05"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 13 (FL State Senate District 13).
|
||||
|
||||
Represents [FL State Senate District 13](/us/states/fl/districts/senate/13.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 92"
|
||||
represents: "us/states/fl/districts/house/92"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 92 (FL State House of Representatives District 92).
|
||||
|
||||
Represents [FL State House of Representatives District 92](/us/states/fl/districts/house/92.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 117"
|
||||
represents: "us/states/fl/districts/house/117"
|
||||
tenure:
|
||||
start: "2020-11-03"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 117 (FL State House of Representatives District 117).
|
||||
|
||||
Represents [FL State House of Representatives District 117](/us/states/fl/districts/house/117.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 55"
|
||||
represents: "us/states/fl/districts/house/55"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 55 (FL State House of Representatives District 55).
|
||||
|
||||
Represents [FL State House of Representatives District 55](/us/states/fl/districts/house/55.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 58"
|
||||
represents: "us/states/fl/districts/house/58"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 58 (FL State House of Representatives District 58).
|
||||
|
||||
Represents [FL State House of Representatives District 58](/us/states/fl/districts/house/58.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 14"
|
||||
represents: "us/states/fl/districts/house/14"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 14 (FL State House of Representatives District 14).
|
||||
|
||||
Represents [FL State House of Representatives District 14](/us/states/fl/districts/house/14.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 18"
|
||||
represents: "us/states/fl/districts/house/18"
|
||||
tenure:
|
||||
start: "2024-11-05"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 18 (FL State House of Representatives District 18).
|
||||
|
||||
Represents [FL State House of Representatives District 18](/us/states/fl/districts/house/18.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 16"
|
||||
represents: "us/states/fl/districts/house/16"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 16 (FL State House of Representatives District 16).
|
||||
|
||||
Represents [FL State House of Representatives District 16](/us/states/fl/districts/house/16.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 25"
|
||||
represents: "us/states/fl/districts/senate/25"
|
||||
tenure:
|
||||
start: "2024-11-05"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 25 (FL State Senate District 25).
|
||||
|
||||
Represents [FL State Senate District 25](/us/states/fl/districts/senate/25.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 82"
|
||||
represents: "us/states/fl/districts/house/82"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 82 (FL State House of Representatives District 82).
|
||||
|
||||
Represents [FL State House of Representatives District 82](/us/states/fl/districts/house/82.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State Senate District 15"
|
||||
represents: "us/states/fl/districts/senate/15"
|
||||
tenure:
|
||||
start: "2025-09-02"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL Senate District 15 (FL State Senate District 15).
|
||||
|
||||
Represents [FL State Senate District 15](/us/states/fl/districts/senate/15.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 68"
|
||||
represents: "us/states/fl/districts/house/68"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 68 (FL State House of Representatives District 68).
|
||||
|
||||
Represents [FL State House of Representatives District 68](/us/states/fl/districts/house/68.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 45"
|
||||
represents: "us/states/fl/districts/house/45"
|
||||
tenure:
|
||||
start: "2024-11-05"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 45 (FL State House of Representatives District 45).
|
||||
|
||||
Represents [FL State House of Representatives District 45](/us/states/fl/districts/house/45.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "FL"
|
||||
district: "FL State House of Representatives District 61"
|
||||
represents: "us/states/fl/districts/house/61"
|
||||
tenure:
|
||||
start: "2022-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current FL House District 61 (FL State House of Representatives District 61).
|
||||
|
||||
Represents [FL State House of Representatives District 61](/us/states/fl/districts/house/61.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