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: "TX"
|
||||
district: "TX State House of Representatives District 30"
|
||||
represents: "us/states/tx/districts/house/30"
|
||||
tenure:
|
||||
start: "2025-01-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 30 (TX State House of Representatives District 30).
|
||||
|
||||
Represents [TX State House of Representatives District 30](/us/states/tx/districts/house/30.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State Senate District 27"
|
||||
represents: "us/states/tx/districts/senate/27"
|
||||
tenure:
|
||||
start: "2025-01-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX Senate District 27 (TX State Senate District 27).
|
||||
|
||||
Represents [TX State Senate District 27](/us/states/tx/districts/senate/27.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 109"
|
||||
represents: "us/states/tx/districts/house/109"
|
||||
tenure:
|
||||
start: "2025-01-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 109 (TX State House of Representatives District 109).
|
||||
|
||||
Represents [TX State House of Representatives District 109](/us/states/tx/districts/house/109.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 44"
|
||||
represents: "us/states/tx/districts/house/44"
|
||||
tenure:
|
||||
start: "2025-01-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 44 (TX State House of Representatives District 44).
|
||||
|
||||
Represents [TX State House of Representatives District 44](/us/states/tx/districts/house/44.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 131"
|
||||
represents: "us/states/tx/districts/house/131"
|
||||
tenure:
|
||||
start: "2005-01-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 131 (TX State House of Representatives District 131).
|
||||
|
||||
Represents [TX State House of Representatives District 131](/us/states/tx/districts/house/131.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 143"
|
||||
represents: "us/states/tx/districts/house/143"
|
||||
tenure:
|
||||
start: "2005-12-20"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 143 (TX State House of Representatives District 143).
|
||||
|
||||
Represents [TX State House of Representatives District 143](/us/states/tx/districts/house/143.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 102"
|
||||
represents: "us/states/tx/districts/house/102"
|
||||
tenure:
|
||||
start: "2019-01-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 102 (TX State House of Representatives District 102).
|
||||
|
||||
Represents [TX State House of Representatives District 102](/us/states/tx/districts/house/102.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 64"
|
||||
represents: "us/states/tx/districts/house/64"
|
||||
tenure:
|
||||
start: "2025-01-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 64 (TX State House of Representatives District 64).
|
||||
|
||||
Represents [TX State House of Representatives District 64](/us/states/tx/districts/house/64.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State Senate District 8"
|
||||
represents: "us/states/tx/districts/senate/8"
|
||||
tenure:
|
||||
start: "2019-01-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX Senate District 8 (TX State Senate District 8).
|
||||
|
||||
Represents [TX State Senate District 8](/us/states/tx/districts/senate/8.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 13"
|
||||
represents: "us/states/tx/districts/house/13"
|
||||
tenure:
|
||||
start: "2023-01-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 13 (TX State House of Representatives District 13).
|
||||
|
||||
Represents [TX State House of Representatives District 13](/us/states/tx/districts/house/13.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 112"
|
||||
represents: "us/states/tx/districts/house/112"
|
||||
tenure:
|
||||
start: "2009-01-13"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 112 (TX State House of Representatives District 112).
|
||||
|
||||
Represents [TX State House of Representatives District 112](/us/states/tx/districts/house/112.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 134"
|
||||
represents: "us/states/tx/districts/house/134"
|
||||
tenure:
|
||||
start: "2021-01-12"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 134 (TX State House of Representatives District 134).
|
||||
|
||||
Represents [TX State House of Representatives District 134](/us/states/tx/districts/house/134.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 140"
|
||||
represents: "us/states/tx/districts/house/140"
|
||||
tenure:
|
||||
start: "2009-01-13"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 140 (TX State House of Representatives District 140).
|
||||
|
||||
Represents [TX State House of Representatives District 140](/us/states/tx/districts/house/140.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 120"
|
||||
represents: "us/states/tx/districts/house/120"
|
||||
tenure:
|
||||
start: "2017-01-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 120 (TX State House of Representatives District 120).
|
||||
|
||||
Represents [TX State House of Representatives District 120](/us/states/tx/districts/house/120.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 63"
|
||||
represents: "us/states/tx/districts/house/63"
|
||||
tenure:
|
||||
start: "2023-01-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 63 (TX State House of Representatives District 63).
|
||||
|
||||
Represents [TX State House of Representatives District 63](/us/states/tx/districts/house/63.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State Senate District 2"
|
||||
represents: "us/states/tx/districts/senate/2"
|
||||
tenure:
|
||||
start: "2015-01-13"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX Senate District 2 (TX State Senate District 2).
|
||||
|
||||
Represents [TX State Senate District 2](/us/states/tx/districts/senate/2.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 41"
|
||||
represents: "us/states/tx/districts/house/41"
|
||||
tenure:
|
||||
start: "2012-09-25"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 41 (TX State House of Representatives District 41).
|
||||
|
||||
Represents [TX State House of Representatives District 41](/us/states/tx/districts/house/41.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State Senate District 13"
|
||||
represents: "us/states/tx/districts/senate/13"
|
||||
tenure:
|
||||
start: "2017-01-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX Senate District 13 (TX State Senate District 13).
|
||||
|
||||
Represents [TX State Senate District 13](/us/states/tx/districts/senate/13.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 54"
|
||||
represents: "us/states/tx/districts/house/54"
|
||||
tenure:
|
||||
start: "2019-01-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 54 (TX State House of Representatives District 54).
|
||||
|
||||
Represents [TX State House of Representatives District 54](/us/states/tx/districts/house/54.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State Senate District 30"
|
||||
represents: "us/states/tx/districts/senate/30"
|
||||
tenure:
|
||||
start: "2025-01-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX Senate District 30 (TX State Senate District 30).
|
||||
|
||||
Represents [TX State Senate District 30](/us/states/tx/districts/senate/30.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 2"
|
||||
represents: "us/states/tx/districts/house/2"
|
||||
tenure:
|
||||
start: "2025-01-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 2 (TX State House of Representatives District 2).
|
||||
|
||||
Represents [TX State House of Representatives District 2](/us/states/tx/districts/house/2.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State Senate District 4"
|
||||
represents: "us/states/tx/districts/senate/4"
|
||||
tenure:
|
||||
start: "2025-01-01"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX Senate District 4 (TX State Senate District 4).
|
||||
|
||||
Represents [TX State Senate District 4](/us/states/tx/districts/senate/4.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State Senate District 22"
|
||||
represents: "us/states/tx/districts/senate/22"
|
||||
tenure:
|
||||
start: "2010-07-02"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX Senate District 22 (TX State Senate District 22).
|
||||
|
||||
Represents [TX State Senate District 22](/us/states/tx/districts/senate/22.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 10"
|
||||
represents: "us/states/tx/districts/house/10"
|
||||
tenure:
|
||||
start: "2021-10-12"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 10 (TX State House of Representatives District 10).
|
||||
|
||||
Represents [TX State House of Representatives District 10](/us/states/tx/districts/house/10.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 128"
|
||||
represents: "us/states/tx/districts/house/128"
|
||||
tenure:
|
||||
start: "2017-01-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 128 (TX State House of Representatives District 128).
|
||||
|
||||
Represents [TX State House of Representatives District 128](/us/states/tx/districts/house/128.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 81"
|
||||
represents: "us/states/tx/districts/house/81"
|
||||
tenure:
|
||||
start: "2015-01-13"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 81 (TX State House of Representatives District 81).
|
||||
|
||||
Represents [TX State House of Representatives District 81](/us/states/tx/districts/house/81.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State Senate District 1"
|
||||
represents: "us/states/tx/districts/senate/1"
|
||||
tenure:
|
||||
start: "2017-01-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX Senate District 1 (TX State Senate District 1).
|
||||
|
||||
Represents [TX State Senate District 1](/us/states/tx/districts/senate/1.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 89"
|
||||
represents: "us/states/tx/districts/house/89"
|
||||
tenure:
|
||||
start: "2019-01-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 89 (TX State House of Representatives District 89).
|
||||
|
||||
Represents [TX State House of Representatives District 89](/us/states/tx/districts/house/89.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 84"
|
||||
represents: "us/states/tx/districts/house/84"
|
||||
tenure:
|
||||
start: "2023-01-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 84 (TX State House of Representatives District 84).
|
||||
|
||||
Represents [TX State House of Representatives District 84](/us/states/tx/districts/house/84.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State Senate District 6"
|
||||
represents: "us/states/tx/districts/senate/6"
|
||||
tenure:
|
||||
start: "2018-12-21"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX Senate District 6 (TX State Senate District 6).
|
||||
|
||||
Represents [TX State Senate District 6](/us/states/tx/districts/senate/6.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 87"
|
||||
represents: "us/states/tx/districts/house/87"
|
||||
tenure:
|
||||
start: "2025-01-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 87 (TX State House of Representatives District 87).
|
||||
|
||||
Represents [TX State House of Representatives District 87](/us/states/tx/districts/house/87.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 52"
|
||||
represents: "us/states/tx/districts/house/52"
|
||||
tenure:
|
||||
start: "2023-01-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 52 (TX State House of Representatives District 52).
|
||||
|
||||
Represents [TX State House of Representatives District 52](/us/states/tx/districts/house/52.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 73"
|
||||
represents: "us/states/tx/districts/house/73"
|
||||
tenure:
|
||||
start: "2023-01-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 73 (TX State House of Representatives District 73).
|
||||
|
||||
Represents [TX State House of Representatives District 73](/us/states/tx/districts/house/73.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 115"
|
||||
represents: "us/states/tx/districts/house/115"
|
||||
tenure:
|
||||
start: "2025-01-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 115 (TX State House of Representatives District 115).
|
||||
|
||||
Represents [TX State House of Representatives District 115](/us/states/tx/districts/house/115.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 3"
|
||||
represents: "us/states/tx/districts/house/3"
|
||||
tenure:
|
||||
start: "2013-01-03"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 3 (TX State House of Representatives District 3).
|
||||
|
||||
Represents [TX State House of Representatives District 3](/us/states/tx/districts/house/3.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State Senate District 29"
|
||||
represents: "us/states/tx/districts/senate/29"
|
||||
tenure:
|
||||
start: "2021-01-12"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX Senate District 29 (TX State Senate District 29).
|
||||
|
||||
Represents [TX State Senate District 29](/us/states/tx/districts/senate/29.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 139"
|
||||
represents: "us/states/tx/districts/house/139"
|
||||
tenure:
|
||||
start: "2025-01-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 139 (TX State House of Representatives District 139).
|
||||
|
||||
Represents [TX State House of Representatives District 139](/us/states/tx/districts/house/139.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 127"
|
||||
represents: "us/states/tx/districts/house/127"
|
||||
tenure:
|
||||
start: "2023-01-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 127 (TX State House of Representatives District 127).
|
||||
|
||||
Represents [TX State House of Representatives District 127](/us/states/tx/districts/house/127.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State Senate District 28"
|
||||
represents: "us/states/tx/districts/senate/28"
|
||||
tenure:
|
||||
start: "2014-09-30"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX Senate District 28 (TX State Senate District 28).
|
||||
|
||||
Represents [TX State Senate District 28](/us/states/tx/districts/senate/28.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State Senate District 5"
|
||||
represents: "us/states/tx/districts/senate/5"
|
||||
tenure:
|
||||
start: "2013-01-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX Senate District 5 (TX State Senate District 5).
|
||||
|
||||
Represents [TX State Senate District 5](/us/states/tx/districts/senate/5.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 99"
|
||||
represents: "us/states/tx/districts/house/99"
|
||||
tenure:
|
||||
start: "2003-01-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 99 (TX State House of Representatives District 99).
|
||||
|
||||
Represents [TX State House of Representatives District 99](/us/states/tx/districts/house/99.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 101"
|
||||
represents: "us/states/tx/districts/house/101"
|
||||
tenure:
|
||||
start: "2013-01-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 101 (TX State House of Representatives District 101).
|
||||
|
||||
Represents [TX State House of Representatives District 101](/us/states/tx/districts/house/101.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 22"
|
||||
represents: "us/states/tx/districts/house/22"
|
||||
tenure:
|
||||
start: "2023-01-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 22 (TX State House of Representatives District 22).
|
||||
|
||||
Represents [TX State House of Representatives District 22](/us/states/tx/districts/house/22.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 145"
|
||||
represents: "us/states/tx/districts/house/145"
|
||||
tenure:
|
||||
start: "2019-03-18"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 145 (TX State House of Representatives District 145).
|
||||
|
||||
Represents [TX State House of Representatives District 145](/us/states/tx/districts/house/145.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State Senate District 20"
|
||||
represents: "us/states/tx/districts/senate/20"
|
||||
tenure:
|
||||
start: "2003-01-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX Senate District 20 (TX State Senate District 20).
|
||||
|
||||
Represents [TX State Senate District 20](/us/states/tx/districts/senate/20.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 79"
|
||||
represents: "us/states/tx/districts/house/79"
|
||||
tenure:
|
||||
start: "2023-01-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 79 (TX State House of Representatives District 79).
|
||||
|
||||
Represents [TX State House of Representatives District 79](/us/states/tx/districts/house/79.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 8"
|
||||
represents: "us/states/tx/districts/house/8"
|
||||
tenure:
|
||||
start: "2019-01-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 8 (TX State House of Representatives District 8).
|
||||
|
||||
Represents [TX State House of Representatives District 8](/us/states/tx/districts/house/8.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 25"
|
||||
represents: "us/states/tx/districts/house/25"
|
||||
tenure:
|
||||
start: "2021-01-12"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 25 (TX State House of Representatives District 25).
|
||||
|
||||
Represents [TX State House of Representatives District 25](/us/states/tx/districts/house/25.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 5"
|
||||
represents: "us/states/tx/districts/house/5"
|
||||
tenure:
|
||||
start: "2017-01-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 5 (TX State House of Representatives District 5).
|
||||
|
||||
Represents [TX State House of Representatives District 5](/us/states/tx/districts/house/5.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 21"
|
||||
represents: "us/states/tx/districts/house/21"
|
||||
tenure:
|
||||
start: "2015-01-13"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 21 (TX State House of Representatives District 21).
|
||||
|
||||
Represents [TX State House of Representatives District 21](/us/states/tx/districts/house/21.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 6"
|
||||
represents: "us/states/tx/districts/house/6"
|
||||
tenure:
|
||||
start: "2025-01-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 6 (TX State House of Representatives District 6).
|
||||
|
||||
Represents [TX State House of Representatives District 6](/us/states/tx/districts/house/6.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 96"
|
||||
represents: "us/states/tx/districts/house/96"
|
||||
tenure:
|
||||
start: "2021-01-12"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 96 (TX State House of Representatives District 96).
|
||||
|
||||
Represents [TX State House of Representatives District 96](/us/states/tx/districts/house/96.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 91"
|
||||
represents: "us/states/tx/districts/house/91"
|
||||
tenure:
|
||||
start: "2025-01-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 91 (TX State House of Representatives District 91).
|
||||
|
||||
Represents [TX State House of Representatives District 91](/us/states/tx/districts/house/91.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 68"
|
||||
represents: "us/states/tx/districts/house/68"
|
||||
tenure:
|
||||
start: "2021-03-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 68 (TX State House of Representatives District 68).
|
||||
|
||||
Represents [TX State House of Representatives District 68](/us/states/tx/districts/house/68.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 34"
|
||||
represents: "us/states/tx/districts/house/34"
|
||||
tenure:
|
||||
start: "2025-01-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 34 (TX State House of Representatives District 34).
|
||||
|
||||
Represents [TX State House of Representatives District 34](/us/states/tx/districts/house/34.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 129"
|
||||
represents: "us/states/tx/districts/house/129"
|
||||
tenure:
|
||||
start: "2015-01-13"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 129 (TX State House of Representatives District 129).
|
||||
|
||||
Represents [TX State House of Representatives District 129](/us/states/tx/districts/house/129.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 123"
|
||||
represents: "us/states/tx/districts/house/123"
|
||||
tenure:
|
||||
start: "2015-03-03"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 123 (TX State House of Representatives District 123).
|
||||
|
||||
Represents [TX State House of Representatives District 123](/us/states/tx/districts/house/123.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 80"
|
||||
represents: "us/states/tx/districts/house/80"
|
||||
tenure:
|
||||
start: "2025-01-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 80 (TX State House of Representatives District 80).
|
||||
|
||||
Represents [TX State House of Representatives District 80](/us/states/tx/districts/house/80.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State Senate District 25"
|
||||
represents: "us/states/tx/districts/senate/25"
|
||||
tenure:
|
||||
start: "2013-01-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX Senate District 25 (TX State Senate District 25).
|
||||
|
||||
Represents [TX State Senate District 25](/us/states/tx/districts/senate/25.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 48"
|
||||
represents: "us/states/tx/districts/house/48"
|
||||
tenure:
|
||||
start: "2006-03-02"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 48 (TX State House of Representatives District 48).
|
||||
|
||||
Represents [TX State House of Representatives District 48](/us/states/tx/districts/house/48.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 72"
|
||||
represents: "us/states/tx/districts/house/72"
|
||||
tenure:
|
||||
start: "2007-01-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 72 (TX State House of Representatives District 72).
|
||||
|
||||
Represents [TX State House of Representatives District 72](/us/states/tx/districts/house/72.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 83"
|
||||
represents: "us/states/tx/districts/house/83"
|
||||
tenure:
|
||||
start: "2015-01-13"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 83 (TX State House of Representatives District 83).
|
||||
|
||||
Represents [TX State House of Representatives District 83](/us/states/tx/districts/house/83.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 74"
|
||||
represents: "us/states/tx/districts/house/74"
|
||||
tenure:
|
||||
start: "2021-01-12"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 74 (TX State House of Representatives District 74).
|
||||
|
||||
Represents [TX State House of Representatives District 74](/us/states/tx/districts/house/74.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 19"
|
||||
represents: "us/states/tx/districts/house/19"
|
||||
tenure:
|
||||
start: "2023-01-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 19 (TX State House of Representatives District 19).
|
||||
|
||||
Represents [TX State House of Representatives District 19](/us/states/tx/districts/house/19.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 38"
|
||||
represents: "us/states/tx/districts/house/38"
|
||||
tenure:
|
||||
start: "2022-03-15"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 38 (TX State House of Representatives District 38).
|
||||
|
||||
Represents [TX State House of Representatives District 38](/us/states/tx/districts/house/38.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 45"
|
||||
represents: "us/states/tx/districts/house/45"
|
||||
tenure:
|
||||
start: "2019-01-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 45 (TX State House of Representatives District 45).
|
||||
|
||||
Represents [TX State House of Representatives District 45](/us/states/tx/districts/house/45.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 28"
|
||||
represents: "us/states/tx/districts/house/28"
|
||||
tenure:
|
||||
start: "2020-01-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 28 (TX State House of Representatives District 28).
|
||||
|
||||
Represents [TX State House of Representatives District 28](/us/states/tx/districts/house/28.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 1"
|
||||
represents: "us/states/tx/districts/house/1"
|
||||
tenure:
|
||||
start: "2015-01-13"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 1 (TX State House of Representatives District 1).
|
||||
|
||||
Represents [TX State House of Representatives District 1](/us/states/tx/districts/house/1.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 137"
|
||||
represents: "us/states/tx/districts/house/137"
|
||||
tenure:
|
||||
start: "2013-01-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 137 (TX State House of Representatives District 137).
|
||||
|
||||
Represents [TX State House of Representatives District 137](/us/states/tx/districts/house/137.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 49"
|
||||
represents: "us/states/tx/districts/house/49"
|
||||
tenure:
|
||||
start: "2017-01-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 49 (TX State House of Representatives District 49).
|
||||
|
||||
Represents [TX State House of Representatives District 49](/us/states/tx/districts/house/49.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 98"
|
||||
represents: "us/states/tx/districts/house/98"
|
||||
tenure:
|
||||
start: "2013-01-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 98 (TX State House of Representatives District 98).
|
||||
|
||||
Represents [TX State House of Representatives District 98](/us/states/tx/districts/house/98.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 24"
|
||||
represents: "us/states/tx/districts/house/24"
|
||||
tenure:
|
||||
start: "2013-01-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 24 (TX State House of Representatives District 24).
|
||||
|
||||
Represents [TX State House of Representatives District 24](/us/states/tx/districts/house/24.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 142"
|
||||
represents: "us/states/tx/districts/house/142"
|
||||
tenure:
|
||||
start: "1985-01-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 142 (TX State House of Representatives District 142).
|
||||
|
||||
Represents [TX State House of Representatives District 142](/us/states/tx/districts/house/142.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 58"
|
||||
represents: "us/states/tx/districts/house/58"
|
||||
tenure:
|
||||
start: "2025-01-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 58 (TX State House of Representatives District 58).
|
||||
|
||||
Represents [TX State House of Representatives District 58](/us/states/tx/districts/house/58.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 55"
|
||||
represents: "us/states/tx/districts/house/55"
|
||||
tenure:
|
||||
start: "2025-01-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 55 (TX State House of Representatives District 55).
|
||||
|
||||
Represents [TX State House of Representatives District 55](/us/states/tx/districts/house/55.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 149"
|
||||
represents: "us/states/tx/districts/house/149"
|
||||
tenure:
|
||||
start: "2005-01-11"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 149 (TX State House of Representatives District 149).
|
||||
|
||||
Represents [TX State House of Representatives District 149](/us/states/tx/districts/house/149.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 43"
|
||||
represents: "us/states/tx/districts/house/43"
|
||||
tenure:
|
||||
start: "2012-03-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 43 (TX State House of Representatives District 43).
|
||||
|
||||
Represents [TX State House of Representatives District 43](/us/states/tx/districts/house/43.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 69"
|
||||
represents: "us/states/tx/districts/house/69"
|
||||
tenure:
|
||||
start: "2013-01-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 69 (TX State House of Representatives District 69).
|
||||
|
||||
Represents [TX State House of Representatives District 69](/us/states/tx/districts/house/69.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 50"
|
||||
represents: "us/states/tx/districts/house/50"
|
||||
tenure:
|
||||
start: "2023-01-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 50 (TX State House of Representatives District 50).
|
||||
|
||||
Represents [TX State House of Representatives District 50](/us/states/tx/districts/house/50.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 37"
|
||||
represents: "us/states/tx/districts/house/37"
|
||||
tenure:
|
||||
start: "2023-01-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 37 (TX State House of Representatives District 37).
|
||||
|
||||
Represents [TX State House of Representatives District 37](/us/states/tx/districts/house/37.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 18"
|
||||
represents: "us/states/tx/districts/house/18"
|
||||
tenure:
|
||||
start: "2025-01-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 18 (TX State House of Representatives District 18).
|
||||
|
||||
Represents [TX State House of Representatives District 18](/us/states/tx/districts/house/18.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 106"
|
||||
represents: "us/states/tx/districts/house/106"
|
||||
tenure:
|
||||
start: "2019-01-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 106 (TX State House of Representatives District 106).
|
||||
|
||||
Represents [TX State House of Representatives District 106](/us/states/tx/districts/house/106.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 7"
|
||||
represents: "us/states/tx/districts/house/7"
|
||||
tenure:
|
||||
start: "2017-01-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 7 (TX State House of Representatives District 7).
|
||||
|
||||
Represents [TX State House of Representatives District 7](/us/states/tx/districts/house/7.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 29"
|
||||
represents: "us/states/tx/districts/house/29"
|
||||
tenure:
|
||||
start: "2025-01-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 29 (TX State House of Representatives District 29).
|
||||
|
||||
Represents [TX State House of Representatives District 29](/us/states/tx/districts/house/29.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 67"
|
||||
represents: "us/states/tx/districts/house/67"
|
||||
tenure:
|
||||
start: "2013-01-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 67 (TX State House of Representatives District 67).
|
||||
|
||||
Represents [TX State House of Representatives District 67](/us/states/tx/districts/house/67.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 104"
|
||||
represents: "us/states/tx/districts/house/104"
|
||||
tenure:
|
||||
start: "2019-01-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 104 (TX State House of Representatives District 104).
|
||||
|
||||
Represents [TX State House of Representatives District 104](/us/states/tx/districts/house/104.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 147"
|
||||
represents: "us/states/tx/districts/house/147"
|
||||
tenure:
|
||||
start: "2022-05-18"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 147 (TX State House of Representatives District 147).
|
||||
|
||||
Represents [TX State House of Representatives District 147](/us/states/tx/districts/house/147.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State Senate District 17"
|
||||
represents: "us/states/tx/districts/senate/17"
|
||||
tenure:
|
||||
start: "2008-12-29"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX Senate District 17 (TX State Senate District 17).
|
||||
|
||||
Represents [TX State Senate District 17](/us/states/tx/districts/senate/17.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 11"
|
||||
represents: "us/states/tx/districts/house/11"
|
||||
tenure:
|
||||
start: "2025-01-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 11 (TX State House of Representatives District 11).
|
||||
|
||||
Represents [TX State House of Representatives District 11](/us/states/tx/districts/house/11.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 78"
|
||||
represents: "us/states/tx/districts/house/78"
|
||||
tenure:
|
||||
start: "2013-01-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 78 (TX State House of Representatives District 78).
|
||||
|
||||
Represents [TX State House of Representatives District 78](/us/states/tx/districts/house/78.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 114"
|
||||
represents: "us/states/tx/districts/house/114"
|
||||
tenure:
|
||||
start: "2023-01-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 114 (TX State House of Representatives District 114).
|
||||
|
||||
Represents [TX State House of Representatives District 114](/us/states/tx/districts/house/114.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 136"
|
||||
represents: "us/states/tx/districts/house/136"
|
||||
tenure:
|
||||
start: "2019-01-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 136 (TX State House of Representatives District 136).
|
||||
|
||||
Represents [TX State House of Representatives District 136](/us/states/tx/districts/house/136.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 118"
|
||||
represents: "us/states/tx/districts/house/118"
|
||||
tenure:
|
||||
start: "2021-11-16"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 118 (TX State House of Representatives District 118).
|
||||
|
||||
Represents [TX State House of Representatives District 118](/us/states/tx/districts/house/118.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 97"
|
||||
represents: "us/states/tx/districts/house/97"
|
||||
tenure:
|
||||
start: "2025-01-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 97 (TX State House of Representatives District 97).
|
||||
|
||||
Represents [TX State House of Representatives District 97](/us/states/tx/districts/house/97.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 86"
|
||||
represents: "us/states/tx/districts/house/86"
|
||||
tenure:
|
||||
start: "1985-01-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 86 (TX State House of Representatives District 86).
|
||||
|
||||
Represents [TX State House of Representatives District 86](/us/states/tx/districts/house/86.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 135"
|
||||
represents: "us/states/tx/districts/house/135"
|
||||
tenure:
|
||||
start: "2019-01-08"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 135 (TX State House of Representatives District 135).
|
||||
|
||||
Represents [TX State House of Representatives District 135](/us/states/tx/districts/house/135.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State Senate District 26"
|
||||
represents: "us/states/tx/districts/senate/26"
|
||||
tenure:
|
||||
start: "2015-03-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX Senate District 26 (TX State Senate District 26).
|
||||
|
||||
Represents [TX State Senate District 26](/us/states/tx/districts/senate/26.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 124"
|
||||
represents: "us/states/tx/districts/house/124"
|
||||
tenure:
|
||||
start: "2023-01-10"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 124 (TX State House of Representatives District 124).
|
||||
|
||||
Represents [TX State House of Representatives District 124](/us/states/tx/districts/house/124.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State Senate District 21"
|
||||
represents: "us/states/tx/districts/senate/21"
|
||||
tenure:
|
||||
start: "1987-01-13"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX Senate District 21 (TX State Senate District 21).
|
||||
|
||||
Represents [TX State Senate District 21](/us/states/tx/districts/senate/21.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "TX"
|
||||
district: "TX State House of Representatives District 33"
|
||||
represents: "us/states/tx/districts/house/33"
|
||||
tenure:
|
||||
start: "2025-01-14"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current TX House District 33 (TX State House of Representatives District 33).
|
||||
|
||||
Represents [TX State House of Representatives District 33](/us/states/tx/districts/house/33.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