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: "SC"
|
||||
district: "SC State House of Representatives District 2"
|
||||
represents: "us/states/sc/districts/house/2"
|
||||
tenure:
|
||||
start: "2024-11-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 2 (SC State House of Representatives District 2).
|
||||
|
||||
Represents [SC State House of Representatives District 2](/us/states/sc/districts/house/2.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 18"
|
||||
represents: "us/states/sc/districts/house/18"
|
||||
tenure:
|
||||
start: "2022-06-15"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 18 (SC State House of Representatives District 18).
|
||||
|
||||
Represents [SC State House of Representatives District 18](/us/states/sc/districts/house/18.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State Senate District 27"
|
||||
represents: "us/states/sc/districts/senate/27"
|
||||
tenure:
|
||||
start: "2024-11-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC Senate District 27 (SC State Senate District 27).
|
||||
|
||||
Represents [SC State Senate District 27](/us/states/sc/districts/senate/27.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 41"
|
||||
represents: "us/states/sc/districts/house/41"
|
||||
tenure:
|
||||
start: "2018-11-12"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 41 (SC State House of Representatives District 41).
|
||||
|
||||
Represents [SC State House of Representatives District 41](/us/states/sc/districts/house/41.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 6"
|
||||
represents: "us/states/sc/districts/house/6"
|
||||
tenure:
|
||||
start: "2022-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 6 (SC State House of Representatives District 6).
|
||||
|
||||
Represents [SC State House of Representatives District 6](/us/states/sc/districts/house/6.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 78"
|
||||
represents: "us/states/sc/districts/house/78"
|
||||
tenure:
|
||||
start: "2012-11-12"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 78 (SC State House of Representatives District 78).
|
||||
|
||||
Represents [SC State House of Representatives District 78](/us/states/sc/districts/house/78.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 35"
|
||||
represents: "us/states/sc/districts/house/35"
|
||||
tenure:
|
||||
start: "2025-01-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 35 (SC State House of Representatives District 35).
|
||||
|
||||
Represents [SC State House of Representatives District 35](/us/states/sc/districts/house/35.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 82"
|
||||
represents: "us/states/sc/districts/house/82"
|
||||
tenure:
|
||||
start: "2025-01-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 82 (SC State House of Representatives District 82).
|
||||
|
||||
Represents [SC State House of Representatives District 82](/us/states/sc/districts/house/82.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 122"
|
||||
represents: "us/states/sc/districts/house/122"
|
||||
tenure:
|
||||
start: "2022-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 122 (SC State House of Representatives District 122).
|
||||
|
||||
Represents [SC State House of Representatives District 122](/us/states/sc/districts/house/122.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 118"
|
||||
represents: "us/states/sc/districts/house/118"
|
||||
tenure:
|
||||
start: "2002-11-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 118 (SC State House of Representatives District 118).
|
||||
|
||||
Represents [SC State House of Representatives District 118](/us/states/sc/districts/house/118.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 83"
|
||||
represents: "us/states/sc/districts/house/83"
|
||||
tenure:
|
||||
start: "2025-01-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 83 (SC State House of Representatives District 83).
|
||||
|
||||
Represents [SC State House of Representatives District 83](/us/states/sc/districts/house/83.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 86"
|
||||
represents: "us/states/sc/districts/house/86"
|
||||
tenure:
|
||||
start: "2025-01-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 86 (SC State House of Representatives District 86).
|
||||
|
||||
Represents [SC State House of Representatives District 86](/us/states/sc/districts/house/86.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 1"
|
||||
represents: "us/states/sc/districts/house/1"
|
||||
tenure:
|
||||
start: "2025-01-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 1 (SC State House of Representatives District 1).
|
||||
|
||||
Represents [SC State House of Representatives District 1](/us/states/sc/districts/house/1.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State Senate District 10"
|
||||
represents: "us/states/sc/districts/senate/10"
|
||||
tenure:
|
||||
start: "2020-11-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC Senate District 10 (SC State Senate District 10).
|
||||
|
||||
Represents [SC State Senate District 10](/us/states/sc/districts/senate/10.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 9"
|
||||
represents: "us/states/sc/districts/house/9"
|
||||
tenure:
|
||||
start: "2024-11-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 9 (SC State House of Representatives District 9).
|
||||
|
||||
Represents [SC State House of Representatives District 9](/us/states/sc/districts/house/9.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State Senate District 40"
|
||||
represents: "us/states/sc/districts/senate/40"
|
||||
tenure:
|
||||
start: "1996-04-30"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC Senate District 40 (SC State Senate District 40).
|
||||
|
||||
Represents [SC State Senate District 40](/us/states/sc/districts/senate/40.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 92"
|
||||
represents: "us/states/sc/districts/house/92"
|
||||
tenure:
|
||||
start: "2022-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 92 (SC State House of Representatives District 92).
|
||||
|
||||
Represents [SC State House of Representatives District 92](/us/states/sc/districts/house/92.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 48"
|
||||
represents: "us/states/sc/districts/house/48"
|
||||
tenure:
|
||||
start: "2022-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 48 (SC State House of Representatives District 48).
|
||||
|
||||
Represents [SC State House of Representatives District 48](/us/states/sc/districts/house/48.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 45"
|
||||
represents: "us/states/sc/districts/house/45"
|
||||
tenure:
|
||||
start: "2016-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 45 (SC State House of Representatives District 45).
|
||||
|
||||
Represents [SC State House of Representatives District 45](/us/states/sc/districts/house/45.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State Senate District 44"
|
||||
represents: "us/states/sc/districts/senate/44"
|
||||
tenure:
|
||||
start: "2020-11-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC Senate District 44 (SC State Senate District 44).
|
||||
|
||||
Represents [SC State Senate District 44](/us/states/sc/districts/senate/44.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 30"
|
||||
represents: "us/states/sc/districts/house/30"
|
||||
tenure:
|
||||
start: "2022-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 30 (SC State House of Representatives District 30).
|
||||
|
||||
Represents [SC State House of Representatives District 30](/us/states/sc/districts/house/30.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 24"
|
||||
represents: "us/states/sc/districts/house/24"
|
||||
tenure:
|
||||
start: "2005-10-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 24 (SC State House of Representatives District 24).
|
||||
|
||||
Represents [SC State House of Representatives District 24](/us/states/sc/districts/house/24.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 39"
|
||||
represents: "us/states/sc/districts/house/39"
|
||||
tenure:
|
||||
start: "2016-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 39 (SC State House of Representatives District 39).
|
||||
|
||||
Represents [SC State House of Representatives District 39](/us/states/sc/districts/house/39.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 103"
|
||||
represents: "us/states/sc/districts/house/103"
|
||||
tenure:
|
||||
start: "2025-01-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 103 (SC State House of Representatives District 103).
|
||||
|
||||
Represents [SC State House of Representatives District 103](/us/states/sc/districts/house/103.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 61"
|
||||
represents: "us/states/sc/districts/house/61"
|
||||
tenure:
|
||||
start: "2022-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 61 (SC State House of Representatives District 61).
|
||||
|
||||
Represents [SC State House of Representatives District 61](/us/states/sc/districts/house/61.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State Senate District 23"
|
||||
represents: "us/states/sc/districts/senate/23"
|
||||
tenure:
|
||||
start: "2024-11-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC Senate District 23 (SC State Senate District 23).
|
||||
|
||||
Represents [SC State Senate District 23](/us/states/sc/districts/senate/23.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 107"
|
||||
represents: "us/states/sc/districts/house/107"
|
||||
tenure:
|
||||
start: "2020-11-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 107 (SC State House of Representatives District 107).
|
||||
|
||||
Represents [SC State House of Representatives District 107](/us/states/sc/districts/house/107.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 23"
|
||||
represents: "us/states/sc/districts/house/23"
|
||||
tenure:
|
||||
start: "2025-01-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 23 (SC State House of Representatives District 23).
|
||||
|
||||
Represents [SC State House of Representatives District 23](/us/states/sc/districts/house/23.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 81"
|
||||
represents: "us/states/sc/districts/house/81"
|
||||
tenure:
|
||||
start: "2024-11-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 81 (SC State House of Representatives District 81).
|
||||
|
||||
Represents [SC State House of Representatives District 81](/us/states/sc/districts/house/81.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State Senate District 43"
|
||||
represents: "us/states/sc/districts/senate/43"
|
||||
tenure:
|
||||
start: "2025-01-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC Senate District 43 (SC State Senate District 43).
|
||||
|
||||
Represents [SC State Senate District 43](/us/states/sc/districts/senate/43.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 73"
|
||||
represents: "us/states/sc/districts/house/73"
|
||||
tenure:
|
||||
start: "2025-01-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 73 (SC State House of Representatives District 73).
|
||||
|
||||
Represents [SC State House of Representatives District 73](/us/states/sc/districts/house/73.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 28"
|
||||
represents: "us/states/sc/districts/house/28"
|
||||
tenure:
|
||||
start: "2024-11-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 28 (SC State House of Representatives District 28).
|
||||
|
||||
Represents [SC State House of Representatives District 28](/us/states/sc/districts/house/28.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 69"
|
||||
represents: "us/states/sc/districts/house/69"
|
||||
tenure:
|
||||
start: "2018-05-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 69 (SC State House of Representatives District 69).
|
||||
|
||||
Represents [SC State House of Representatives District 69](/us/states/sc/districts/house/69.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 65"
|
||||
represents: "us/states/sc/districts/house/65"
|
||||
tenure:
|
||||
start: "2022-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 65 (SC State House of Representatives District 65).
|
||||
|
||||
Represents [SC State House of Representatives District 65](/us/states/sc/districts/house/65.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 113"
|
||||
represents: "us/states/sc/districts/house/113"
|
||||
tenure:
|
||||
start: "2025-04-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 113 (SC State House of Representatives District 113).
|
||||
|
||||
Represents [SC State House of Representatives District 113](/us/states/sc/districts/house/113.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 11"
|
||||
represents: "us/states/sc/districts/house/11"
|
||||
tenure:
|
||||
start: "2012-11-12"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 11 (SC State House of Representatives District 11).
|
||||
|
||||
Represents [SC State House of Representatives District 11](/us/states/sc/districts/house/11.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 12"
|
||||
represents: "us/states/sc/districts/house/12"
|
||||
tenure:
|
||||
start: "2022-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 12 (SC State House of Representatives District 12).
|
||||
|
||||
Represents [SC State House of Representatives District 12](/us/states/sc/districts/house/12.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State Senate District 9"
|
||||
represents: "us/states/sc/districts/senate/9"
|
||||
tenure:
|
||||
start: "2025-01-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC Senate District 9 (SC State Senate District 9).
|
||||
|
||||
Represents [SC State Senate District 9](/us/states/sc/districts/senate/9.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State Senate District 21"
|
||||
represents: "us/states/sc/districts/senate/21"
|
||||
tenure:
|
||||
start: "2025-01-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC Senate District 21 (SC State Senate District 21).
|
||||
|
||||
Represents [SC State Senate District 21](/us/states/sc/districts/senate/21.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 4"
|
||||
represents: "us/states/sc/districts/house/4"
|
||||
tenure:
|
||||
start: "2025-01-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 4 (SC State House of Representatives District 4).
|
||||
|
||||
Represents [SC State House of Representatives District 4](/us/states/sc/districts/house/4.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 26"
|
||||
represents: "us/states/sc/districts/house/26"
|
||||
tenure:
|
||||
start: "2024-11-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 26 (SC State House of Representatives District 26).
|
||||
|
||||
Represents [SC State House of Representatives District 26](/us/states/sc/districts/house/26.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 27"
|
||||
represents: "us/states/sc/districts/house/27"
|
||||
tenure:
|
||||
start: "2022-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 27 (SC State House of Representatives District 27).
|
||||
|
||||
Represents [SC State House of Representatives District 27](/us/states/sc/districts/house/27.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 51"
|
||||
represents: "us/states/sc/districts/house/51"
|
||||
tenure:
|
||||
start: "2025-01-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 51 (SC State House of Representatives District 51).
|
||||
|
||||
Represents [SC State House of Representatives District 51](/us/states/sc/districts/house/51.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 29"
|
||||
represents: "us/states/sc/districts/house/29"
|
||||
tenure:
|
||||
start: "2025-01-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 29 (SC State House of Representatives District 29).
|
||||
|
||||
Represents [SC State House of Representatives District 29](/us/states/sc/districts/house/29.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State Senate District 42"
|
||||
represents: "us/states/sc/districts/senate/42"
|
||||
tenure:
|
||||
start: "2024-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC Senate District 42 (SC State Senate District 42).
|
||||
|
||||
Represents [SC State Senate District 42](/us/states/sc/districts/senate/42.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 21"
|
||||
represents: "us/states/sc/districts/house/21"
|
||||
tenure:
|
||||
start: "2026-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 21 (SC State House of Representatives District 21).
|
||||
|
||||
Represents [SC State House of Representatives District 21](/us/states/sc/districts/house/21.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 8"
|
||||
represents: "us/states/sc/districts/house/8"
|
||||
tenure:
|
||||
start: "2022-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 8 (SC State House of Representatives District 8).
|
||||
|
||||
Represents [SC State House of Representatives District 8](/us/states/sc/districts/house/8.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 42"
|
||||
represents: "us/states/sc/districts/house/42"
|
||||
tenure:
|
||||
start: "2018-11-12"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 42 (SC State House of Representatives District 42).
|
||||
|
||||
Represents [SC State House of Representatives District 42](/us/states/sc/districts/house/42.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State Senate District 20"
|
||||
represents: "us/states/sc/districts/senate/20"
|
||||
tenure:
|
||||
start: "2024-11-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC Senate District 20 (SC State Senate District 20).
|
||||
|
||||
Represents [SC State Senate District 20](/us/states/sc/districts/senate/20.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State Senate District 17"
|
||||
represents: "us/states/sc/districts/senate/17"
|
||||
tenure:
|
||||
start: "2024-11-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC Senate District 17 (SC State Senate District 17).
|
||||
|
||||
Represents [SC State Senate District 17](/us/states/sc/districts/senate/17.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 64"
|
||||
represents: "us/states/sc/districts/house/64"
|
||||
tenure:
|
||||
start: "2022-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 64 (SC State House of Representatives District 64).
|
||||
|
||||
Represents [SC State House of Representatives District 64](/us/states/sc/districts/house/64.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 114"
|
||||
represents: "us/states/sc/districts/house/114"
|
||||
tenure:
|
||||
start: "2022-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 114 (SC State House of Representatives District 114).
|
||||
|
||||
Represents [SC State House of Representatives District 114](/us/states/sc/districts/house/114.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 94"
|
||||
represents: "us/states/sc/districts/house/94"
|
||||
tenure:
|
||||
start: "2020-11-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 94 (SC State House of Representatives District 94).
|
||||
|
||||
Represents [SC State House of Representatives District 94](/us/states/sc/districts/house/94.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 95"
|
||||
represents: "us/states/sc/districts/house/95"
|
||||
tenure:
|
||||
start: "2022-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 95 (SC State House of Representatives District 95).
|
||||
|
||||
Represents [SC State House of Representatives District 95](/us/states/sc/districts/house/95.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 98"
|
||||
represents: "us/states/sc/districts/house/98"
|
||||
tenure:
|
||||
start: "2026-01-13"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 98 (SC State House of Representatives District 98).
|
||||
|
||||
Represents [SC State House of Representatives District 98](/us/states/sc/districts/house/98.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State Senate District 28"
|
||||
represents: "us/states/sc/districts/senate/28"
|
||||
tenure:
|
||||
start: "2025-01-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC Senate District 28 (SC State Senate District 28).
|
||||
|
||||
Represents [SC State Senate District 28](/us/states/sc/districts/senate/28.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 79"
|
||||
represents: "us/states/sc/districts/house/79"
|
||||
tenure:
|
||||
start: "2024-11-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 79 (SC State House of Representatives District 79).
|
||||
|
||||
Represents [SC State House of Representatives District 79](/us/states/sc/districts/house/79.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 102"
|
||||
represents: "us/states/sc/districts/house/102"
|
||||
tenure:
|
||||
start: "2024-11-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 102 (SC State House of Representatives District 102).
|
||||
|
||||
Represents [SC State House of Representatives District 102](/us/states/sc/districts/house/102.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State Senate District 14"
|
||||
represents: "us/states/sc/districts/senate/14"
|
||||
tenure:
|
||||
start: "1980-11-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC Senate District 14 (SC State Senate District 14).
|
||||
|
||||
Represents [SC State Senate District 14](/us/states/sc/districts/senate/14.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 46"
|
||||
represents: "us/states/sc/districts/house/46"
|
||||
tenure:
|
||||
start: "2022-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 46 (SC State House of Representatives District 46).
|
||||
|
||||
Represents [SC State House of Representatives District 46](/us/states/sc/districts/house/46.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 75"
|
||||
represents: "us/states/sc/districts/house/75"
|
||||
tenure:
|
||||
start: "2022-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 75 (SC State House of Representatives District 75).
|
||||
|
||||
Represents [SC State House of Representatives District 75](/us/states/sc/districts/house/75.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 68"
|
||||
represents: "us/states/sc/districts/house/68"
|
||||
tenure:
|
||||
start: "2012-08-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 68 (SC State House of Representatives District 68).
|
||||
|
||||
Represents [SC State House of Representatives District 68](/us/states/sc/districts/house/68.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 15"
|
||||
represents: "us/states/sc/districts/house/15"
|
||||
tenure:
|
||||
start: "2018-11-12"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 15 (SC State House of Representatives District 15).
|
||||
|
||||
Represents [SC State House of Representatives District 15](/us/states/sc/districts/house/15.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State Senate District 29"
|
||||
represents: "us/states/sc/districts/senate/29"
|
||||
tenure:
|
||||
start: "2024-11-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC Senate District 29 (SC State Senate District 29).
|
||||
|
||||
Represents [SC State Senate District 29](/us/states/sc/districts/senate/29.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 55"
|
||||
represents: "us/states/sc/districts/house/55"
|
||||
tenure:
|
||||
start: "2025-01-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 55 (SC State House of Representatives District 55).
|
||||
|
||||
Represents [SC State House of Representatives District 55](/us/states/sc/districts/house/55.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 66"
|
||||
represents: "us/states/sc/districts/house/66"
|
||||
tenure:
|
||||
start: "2024-11-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 66 (SC State House of Representatives District 66).
|
||||
|
||||
Represents [SC State House of Representatives District 66](/us/states/sc/districts/house/66.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 116"
|
||||
represents: "us/states/sc/districts/house/116"
|
||||
tenure:
|
||||
start: "2024-11-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 116 (SC State House of Representatives District 116).
|
||||
|
||||
Represents [SC State House of Representatives District 116](/us/states/sc/districts/house/116.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State Senate District 6"
|
||||
represents: "us/states/sc/districts/senate/6"
|
||||
tenure:
|
||||
start: "2024-11-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC Senate District 6 (SC State Senate District 6).
|
||||
|
||||
Represents [SC State Senate District 6](/us/states/sc/districts/senate/6.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 54"
|
||||
represents: "us/states/sc/districts/house/54"
|
||||
tenure:
|
||||
start: "2024-11-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 54 (SC State House of Representatives District 54).
|
||||
|
||||
Represents [SC State House of Representatives District 54](/us/states/sc/districts/house/54.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 63"
|
||||
represents: "us/states/sc/districts/house/63"
|
||||
tenure:
|
||||
start: "2015-04-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 63 (SC State House of Representatives District 63).
|
||||
|
||||
Represents [SC State House of Representatives District 63](/us/states/sc/districts/house/63.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 85"
|
||||
represents: "us/states/sc/districts/house/85"
|
||||
tenure:
|
||||
start: "2022-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 85 (SC State House of Representatives District 85).
|
||||
|
||||
Represents [SC State House of Representatives District 85](/us/states/sc/districts/house/85.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 123"
|
||||
represents: "us/states/sc/districts/house/123"
|
||||
tenure:
|
||||
start: "2014-11-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 123 (SC State House of Representatives District 123).
|
||||
|
||||
Represents [SC State House of Representatives District 123](/us/states/sc/districts/house/123.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 58"
|
||||
represents: "us/states/sc/districts/house/58"
|
||||
tenure:
|
||||
start: "2014-11-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 58 (SC State House of Representatives District 58).
|
||||
|
||||
Represents [SC State House of Representatives District 58](/us/states/sc/districts/house/58.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State Senate District 36"
|
||||
represents: "us/states/sc/districts/senate/36"
|
||||
tenure:
|
||||
start: "2024-11-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC Senate District 36 (SC State Senate District 36).
|
||||
|
||||
Represents [SC State Senate District 36](/us/states/sc/districts/senate/36.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State Senate District 35"
|
||||
represents: "us/states/sc/districts/senate/35"
|
||||
tenure:
|
||||
start: "2024-11-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC Senate District 35 (SC State Senate District 35).
|
||||
|
||||
Represents [SC State Senate District 35](/us/states/sc/districts/senate/35.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 52"
|
||||
represents: "us/states/sc/districts/house/52"
|
||||
tenure:
|
||||
start: "2024-11-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 52 (SC State House of Representatives District 52).
|
||||
|
||||
Represents [SC State House of Representatives District 52](/us/states/sc/districts/house/52.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 93"
|
||||
represents: "us/states/sc/districts/house/93"
|
||||
tenure:
|
||||
start: "2024-11-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 93 (SC State House of Representatives District 93).
|
||||
|
||||
Represents [SC State House of Representatives District 93](/us/states/sc/districts/house/93.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 112"
|
||||
represents: "us/states/sc/districts/house/112"
|
||||
tenure:
|
||||
start: "2020-11-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 112 (SC State House of Representatives District 112).
|
||||
|
||||
Represents [SC State House of Representatives District 112](/us/states/sc/districts/house/112.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 40"
|
||||
represents: "us/states/sc/districts/house/40"
|
||||
tenure:
|
||||
start: "2022-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 40 (SC State House of Representatives District 40).
|
||||
|
||||
Represents [SC State House of Representatives District 40](/us/states/sc/districts/house/40.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 49"
|
||||
represents: "us/states/sc/districts/house/49"
|
||||
tenure:
|
||||
start: "2025-01-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 49 (SC State House of Representatives District 49).
|
||||
|
||||
Represents [SC State House of Representatives District 49](/us/states/sc/districts/house/49.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 88"
|
||||
represents: "us/states/sc/districts/house/88"
|
||||
tenure:
|
||||
start: "2026-01-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 88 (SC State House of Representatives District 88).
|
||||
|
||||
Represents [SC State House of Representatives District 88](/us/states/sc/districts/house/88.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 13"
|
||||
represents: "us/states/sc/districts/house/13"
|
||||
tenure:
|
||||
start: "2016-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 13 (SC State House of Representatives District 13).
|
||||
|
||||
Represents [SC State House of Representatives District 13](/us/states/sc/districts/house/13.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 117"
|
||||
represents: "us/states/sc/districts/house/117"
|
||||
tenure:
|
||||
start: "2022-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 117 (SC State House of Representatives District 117).
|
||||
|
||||
Represents [SC State House of Representatives District 117](/us/states/sc/districts/house/117.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State Senate District 11"
|
||||
represents: "us/states/sc/districts/senate/11"
|
||||
tenure:
|
||||
start: "2020-11-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC Senate District 11 (SC State Senate District 11).
|
||||
|
||||
Represents [SC State Senate District 11](/us/states/sc/districts/senate/11.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 38"
|
||||
represents: "us/states/sc/districts/house/38"
|
||||
tenure:
|
||||
start: "2016-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 38 (SC State House of Representatives District 38).
|
||||
|
||||
Represents [SC State House of Representatives District 38](/us/states/sc/districts/house/38.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 90"
|
||||
represents: "us/states/sc/districts/house/90"
|
||||
tenure:
|
||||
start: "2014-11-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 90 (SC State House of Representatives District 90).
|
||||
|
||||
Represents [SC State House of Representatives District 90](/us/states/sc/districts/house/90.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 77"
|
||||
represents: "us/states/sc/districts/house/77"
|
||||
tenure:
|
||||
start: "2018-11-12"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 77 (SC State House of Representatives District 77).
|
||||
|
||||
Represents [SC State House of Representatives District 77](/us/states/sc/districts/house/77.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State Senate District 7"
|
||||
represents: "us/states/sc/districts/senate/7"
|
||||
tenure:
|
||||
start: "2025-01-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC Senate District 7 (SC State Senate District 7).
|
||||
|
||||
Represents [SC State Senate District 7](/us/states/sc/districts/senate/7.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 80"
|
||||
represents: "us/states/sc/districts/house/80"
|
||||
tenure:
|
||||
start: "2022-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 80 (SC State House of Representatives District 80).
|
||||
|
||||
Represents [SC State House of Representatives District 80](/us/states/sc/districts/house/80.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 50"
|
||||
represents: "us/states/sc/districts/house/50"
|
||||
tenure:
|
||||
start: "2025-06-03"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 50 (SC State House of Representatives District 50).
|
||||
|
||||
Represents [SC State House of Representatives District 50](/us/states/sc/districts/house/50.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State Senate District 30"
|
||||
represents: "us/states/sc/districts/senate/30"
|
||||
tenure:
|
||||
start: "2004-11-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC Senate District 30 (SC State Senate District 30).
|
||||
|
||||
Represents [SC State Senate District 30](/us/states/sc/districts/senate/30.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 105"
|
||||
represents: "us/states/sc/districts/house/105"
|
||||
tenure:
|
||||
start: "2025-01-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 105 (SC State House of Representatives District 105).
|
||||
|
||||
Represents [SC State House of Representatives District 105](/us/states/sc/districts/house/105.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State Senate District 37"
|
||||
represents: "us/states/sc/districts/senate/37"
|
||||
tenure:
|
||||
start: "1997-11-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC Senate District 37 (SC State Senate District 37).
|
||||
|
||||
Represents [SC State Senate District 37](/us/states/sc/districts/senate/37.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State Senate District 12"
|
||||
represents: "us/states/sc/districts/senate/12"
|
||||
tenure:
|
||||
start: "2026-01-05"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC Senate District 12 (SC State Senate District 12).
|
||||
|
||||
Represents [SC State Senate District 12](/us/states/sc/districts/senate/12.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 7"
|
||||
represents: "us/states/sc/districts/house/7"
|
||||
tenure:
|
||||
start: "2024-11-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 7 (SC State House of Representatives District 7).
|
||||
|
||||
Represents [SC State House of Representatives District 7](/us/states/sc/districts/house/7.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 108"
|
||||
represents: "us/states/sc/districts/house/108"
|
||||
tenure:
|
||||
start: "2016-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 108 (SC State House of Representatives District 108).
|
||||
|
||||
Represents [SC State House of Representatives District 108](/us/states/sc/districts/house/108.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 76"
|
||||
represents: "us/states/sc/districts/house/76"
|
||||
tenure:
|
||||
start: "2025-01-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 76 (SC State House of Representatives District 76).
|
||||
|
||||
Represents [SC State House of Representatives District 76](/us/states/sc/districts/house/76.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 119"
|
||||
represents: "us/states/sc/districts/house/119"
|
||||
tenure:
|
||||
start: "2025-01-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 119 (SC State House of Representatives District 119).
|
||||
|
||||
Represents [SC State House of Representatives District 119](/us/states/sc/districts/house/119.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 91"
|
||||
represents: "us/states/sc/districts/house/91"
|
||||
tenure:
|
||||
start: "2025-01-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 91 (SC State House of Representatives District 91).
|
||||
|
||||
Represents [SC State House of Representatives District 91](/us/states/sc/districts/house/91.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "SC"
|
||||
district: "SC State House of Representatives District 57"
|
||||
represents: "us/states/sc/districts/house/57"
|
||||
tenure:
|
||||
start: "2016-11-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current SC House District 57 (SC State House of Representatives District 57).
|
||||
|
||||
Represents [SC State House of Representatives District 57](/us/states/sc/districts/house/57.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