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: "NH"
|
||||
district: "NH State House of Representatives District Rockingham 30"
|
||||
represents: "us/states/nh/districts/house/rockingham-30"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Rockingham 30 (NH State House of Representatives District Rockingham 30).
|
||||
|
||||
Represents [NH State House of Representatives District Rockingham 30](/us/states/nh/districts/house/rockingham-30.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Hillsborough 12"
|
||||
represents: "us/states/nh/districts/house/hillsborough-12"
|
||||
tenure:
|
||||
start: "2024-12-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Hillsborough 12 (NH State House of Representatives District Hillsborough 12).
|
||||
|
||||
Represents [NH State House of Representatives District Hillsborough 12](/us/states/nh/districts/house/hillsborough-12.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Strafford 7"
|
||||
represents: "us/states/nh/districts/house/strafford-7"
|
||||
tenure:
|
||||
start: "2024-11-20"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Strafford 7 (NH State House of Representatives District Strafford 7).
|
||||
|
||||
Represents [NH State House of Representatives District Strafford 7](/us/states/nh/districts/house/strafford-7.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Rockingham 33"
|
||||
represents: "us/states/nh/districts/house/rockingham-33"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Rockingham 33 (NH State House of Representatives District Rockingham 33).
|
||||
|
||||
Represents [NH State House of Representatives District Rockingham 33](/us/states/nh/districts/house/rockingham-33.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Strafford 15"
|
||||
represents: "us/states/nh/districts/house/strafford-15"
|
||||
tenure:
|
||||
start: "2024-12-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Strafford 15 (NH State House of Representatives District Strafford 15).
|
||||
|
||||
Represents [NH State House of Representatives District Strafford 15](/us/states/nh/districts/house/strafford-15.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Hillsborough 7"
|
||||
represents: "us/states/nh/districts/house/hillsborough-7"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Hillsborough 7 (NH State House of Representatives District Hillsborough 7).
|
||||
|
||||
Represents [NH State House of Representatives District Hillsborough 7](/us/states/nh/districts/house/hillsborough-7.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Hillsborough 20"
|
||||
represents: "us/states/nh/districts/house/hillsborough-20"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Hillsborough 20 (NH State House of Representatives District Hillsborough 20).
|
||||
|
||||
Represents [NH State House of Representatives District Hillsborough 20](/us/states/nh/districts/house/hillsborough-20.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Strafford 20"
|
||||
represents: "us/states/nh/districts/house/strafford-20"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Strafford 20 (NH State House of Representatives District Strafford 20).
|
||||
|
||||
Represents [NH State House of Representatives District Strafford 20](/us/states/nh/districts/house/strafford-20.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Rockingham 12"
|
||||
represents: "us/states/nh/districts/house/rockingham-12"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Rockingham 12 (NH State House of Representatives District Rockingham 12).
|
||||
|
||||
Represents [NH State House of Representatives District Rockingham 12](/us/states/nh/districts/house/rockingham-12.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Merrimack 26"
|
||||
represents: "us/states/nh/districts/house/merrimack-26"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Merrimack 26 (NH State House of Representatives District Merrimack 26).
|
||||
|
||||
Represents [NH State House of Representatives District Merrimack 26](/us/states/nh/districts/house/merrimack-26.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Strafford 9"
|
||||
represents: "us/states/nh/districts/house/strafford-9"
|
||||
tenure:
|
||||
start: "2024-12-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Strafford 9 (NH State House of Representatives District Strafford 9).
|
||||
|
||||
Represents [NH State House of Representatives District Strafford 9](/us/states/nh/districts/house/strafford-9.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Hillsborough 13"
|
||||
represents: "us/states/nh/districts/house/hillsborough-13"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Hillsborough 13 (NH State House of Representatives District Hillsborough 13).
|
||||
|
||||
Represents [NH State House of Representatives District Hillsborough 13](/us/states/nh/districts/house/hillsborough-13.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Carroll 2"
|
||||
represents: "us/states/nh/districts/house/carroll-2"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Carroll 2 (NH State House of Representatives District Carroll 2).
|
||||
|
||||
Represents [NH State House of Representatives District Carroll 2](/us/states/nh/districts/house/carroll-2.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Coos 2"
|
||||
represents: "us/states/nh/districts/house/coos-2"
|
||||
tenure:
|
||||
start: "2020-12-02"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Coos 2 (NH State House of Representatives District Coos 2).
|
||||
|
||||
Represents [NH State House of Representatives District Coos 2](/us/states/nh/districts/house/coos-2.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Belknap 7"
|
||||
represents: "us/states/nh/districts/house/belknap-7"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Belknap 7 (NH State House of Representatives District Belknap 7).
|
||||
|
||||
Represents [NH State House of Representatives District Belknap 7](/us/states/nh/districts/house/belknap-7.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Cheshire 10"
|
||||
represents: "us/states/nh/districts/house/cheshire-10"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Cheshire 10 (NH State House of Representatives District Cheshire 10).
|
||||
|
||||
Represents [NH State House of Representatives District Cheshire 10](/us/states/nh/districts/house/cheshire-10.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Merrimack 17"
|
||||
represents: "us/states/nh/districts/house/merrimack-17"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Merrimack 17 (NH State House of Representatives District Merrimack 17).
|
||||
|
||||
Represents [NH State House of Representatives District Merrimack 17](/us/states/nh/districts/house/merrimack-17.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Grafton 8"
|
||||
represents: "us/states/nh/districts/house/grafton-8"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Grafton 8 (NH State House of Representatives District Grafton 8).
|
||||
|
||||
Represents [NH State House of Representatives District Grafton 8](/us/states/nh/districts/house/grafton-8.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Hillsborough 12"
|
||||
represents: "us/states/nh/districts/house/hillsborough-12"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Hillsborough 12 (NH State House of Representatives District Hillsborough 12).
|
||||
|
||||
Represents [NH State House of Representatives District Hillsborough 12](/us/states/nh/districts/house/hillsborough-12.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Hillsborough 9"
|
||||
represents: "us/states/nh/districts/house/hillsborough-9"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Hillsborough 9 (NH State House of Representatives District Hillsborough 9).
|
||||
|
||||
Represents [NH State House of Representatives District Hillsborough 9](/us/states/nh/districts/house/hillsborough-9.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State Senate District 23"
|
||||
represents: "us/states/nh/districts/senate/23"
|
||||
tenure:
|
||||
start: "2020-12-02"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH Senate District 23 (NH State Senate District 23).
|
||||
|
||||
Represents [NH State Senate District 23](/us/states/nh/districts/senate/23.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Hillsborough 10"
|
||||
represents: "us/states/nh/districts/house/hillsborough-10"
|
||||
tenure:
|
||||
start: "2024-12-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Hillsborough 10 (NH State House of Representatives District Hillsborough 10).
|
||||
|
||||
Represents [NH State House of Representatives District Hillsborough 10](/us/states/nh/districts/house/hillsborough-10.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Sullivan 2"
|
||||
represents: "us/states/nh/districts/house/sullivan-2"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Sullivan 2 (NH State House of Representatives District Sullivan 2).
|
||||
|
||||
Represents [NH State House of Representatives District Sullivan 2](/us/states/nh/districts/house/sullivan-2.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Strafford 12"
|
||||
represents: "us/states/nh/districts/house/strafford-12"
|
||||
tenure:
|
||||
start: "2025-07-09"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Strafford 12 (NH State House of Representatives District Strafford 12).
|
||||
|
||||
Represents [NH State House of Representatives District Strafford 12](/us/states/nh/districts/house/strafford-12.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Rockingham 20"
|
||||
represents: "us/states/nh/districts/house/rockingham-20"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Rockingham 20 (NH State House of Representatives District Rockingham 20).
|
||||
|
||||
Represents [NH State House of Representatives District Rockingham 20](/us/states/nh/districts/house/rockingham-20.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Rockingham 17"
|
||||
represents: "us/states/nh/districts/house/rockingham-17"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Rockingham 17 (NH State House of Representatives District Rockingham 17).
|
||||
|
||||
Represents [NH State House of Representatives District Rockingham 17](/us/states/nh/districts/house/rockingham-17.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Carroll 7"
|
||||
represents: "us/states/nh/districts/house/carroll-7"
|
||||
tenure:
|
||||
start: "2026-03-25"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Carroll 7 (NH State House of Representatives District Carroll 7).
|
||||
|
||||
Represents [NH State House of Representatives District Carroll 7](/us/states/nh/districts/house/carroll-7.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Hillsborough 26"
|
||||
represents: "us/states/nh/districts/house/hillsborough-26"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Hillsborough 26 (NH State House of Representatives District Hillsborough 26).
|
||||
|
||||
Represents [NH State House of Representatives District Hillsborough 26](/us/states/nh/districts/house/hillsborough-26.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Hillsborough 2"
|
||||
represents: "us/states/nh/districts/house/hillsborough-2"
|
||||
tenure:
|
||||
start: "2024-12-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Hillsborough 2 (NH State House of Representatives District Hillsborough 2).
|
||||
|
||||
Represents [NH State House of Representatives District Hillsborough 2](/us/states/nh/districts/house/hillsborough-2.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Rockingham 4"
|
||||
represents: "us/states/nh/districts/house/rockingham-4"
|
||||
tenure:
|
||||
start: "2024-12-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Rockingham 4 (NH State House of Representatives District Rockingham 4).
|
||||
|
||||
Represents [NH State House of Representatives District Rockingham 4](/us/states/nh/districts/house/rockingham-4.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Merrimack 12"
|
||||
represents: "us/states/nh/districts/house/merrimack-12"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Merrimack 12 (NH State House of Representatives District Merrimack 12).
|
||||
|
||||
Represents [NH State House of Representatives District Merrimack 12](/us/states/nh/districts/house/merrimack-12.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Sullivan 1"
|
||||
represents: "us/states/nh/districts/house/sullivan-1"
|
||||
tenure:
|
||||
start: "2017-11-22"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Sullivan 1 (NH State House of Representatives District Sullivan 1).
|
||||
|
||||
Represents [NH State House of Representatives District Sullivan 1](/us/states/nh/districts/house/sullivan-1.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Carroll 8"
|
||||
represents: "us/states/nh/districts/house/carroll-8"
|
||||
tenure:
|
||||
start: "2024-12-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Carroll 8 (NH State House of Representatives District Carroll 8).
|
||||
|
||||
Represents [NH State House of Representatives District Carroll 8](/us/states/nh/districts/house/carroll-8.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Merrimack 3"
|
||||
represents: "us/states/nh/districts/house/merrimack-3"
|
||||
tenure:
|
||||
start: "2024-12-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Merrimack 3 (NH State House of Representatives District Merrimack 3).
|
||||
|
||||
Represents [NH State House of Representatives District Merrimack 3](/us/states/nh/districts/house/merrimack-3.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Rockingham 26"
|
||||
represents: "us/states/nh/districts/house/rockingham-26"
|
||||
tenure:
|
||||
start: "2024-12-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Rockingham 26 (NH State House of Representatives District Rockingham 26).
|
||||
|
||||
Represents [NH State House of Representatives District Rockingham 26](/us/states/nh/districts/house/rockingham-26.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Grafton 1"
|
||||
represents: "us/states/nh/districts/house/grafton-1"
|
||||
tenure:
|
||||
start: "2024-12-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Grafton 1 (NH State House of Representatives District Grafton 1).
|
||||
|
||||
Represents [NH State House of Representatives District Grafton 1](/us/states/nh/districts/house/grafton-1.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Merrimack 27"
|
||||
represents: "us/states/nh/districts/house/merrimack-27"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Merrimack 27 (NH State House of Representatives District Merrimack 27).
|
||||
|
||||
Represents [NH State House of Representatives District Merrimack 27](/us/states/nh/districts/house/merrimack-27.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Rockingham 28"
|
||||
represents: "us/states/nh/districts/house/rockingham-28"
|
||||
tenure:
|
||||
start: "2024-12-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Rockingham 28 (NH State House of Representatives District Rockingham 28).
|
||||
|
||||
Represents [NH State House of Representatives District Rockingham 28](/us/states/nh/districts/house/rockingham-28.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Hillsborough 6"
|
||||
represents: "us/states/nh/districts/house/hillsborough-6"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Hillsborough 6 (NH State House of Representatives District Hillsborough 6).
|
||||
|
||||
Represents [NH State House of Representatives District Hillsborough 6](/us/states/nh/districts/house/hillsborough-6.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Strafford 4"
|
||||
represents: "us/states/nh/districts/house/strafford-4"
|
||||
tenure:
|
||||
start: "2018-12-05"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Strafford 4 (NH State House of Representatives District Strafford 4).
|
||||
|
||||
Represents [NH State House of Representatives District Strafford 4](/us/states/nh/districts/house/strafford-4.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Hillsborough 2"
|
||||
represents: "us/states/nh/districts/house/hillsborough-2"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Hillsborough 2 (NH State House of Representatives District Hillsborough 2).
|
||||
|
||||
Represents [NH State House of Representatives District Hillsborough 2](/us/states/nh/districts/house/hillsborough-2.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Hillsborough 7"
|
||||
represents: "us/states/nh/districts/house/hillsborough-7"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Hillsborough 7 (NH State House of Representatives District Hillsborough 7).
|
||||
|
||||
Represents [NH State House of Representatives District Hillsborough 7](/us/states/nh/districts/house/hillsborough-7.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Cheshire 6"
|
||||
represents: "us/states/nh/districts/house/cheshire-6"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Cheshire 6 (NH State House of Representatives District Cheshire 6).
|
||||
|
||||
Represents [NH State House of Representatives District Cheshire 6](/us/states/nh/districts/house/cheshire-6.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Hillsborough 13"
|
||||
represents: "us/states/nh/districts/house/hillsborough-13"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Hillsborough 13 (NH State House of Representatives District Hillsborough 13).
|
||||
|
||||
Represents [NH State House of Representatives District Hillsborough 13](/us/states/nh/districts/house/hillsborough-13.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Rockingham 17"
|
||||
represents: "us/states/nh/districts/house/rockingham-17"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Rockingham 17 (NH State House of Representatives District Rockingham 17).
|
||||
|
||||
Represents [NH State House of Representatives District Rockingham 17](/us/states/nh/districts/house/rockingham-17.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Rockingham 13"
|
||||
represents: "us/states/nh/districts/house/rockingham-13"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Rockingham 13 (NH State House of Representatives District Rockingham 13).
|
||||
|
||||
Represents [NH State House of Representatives District Rockingham 13](/us/states/nh/districts/house/rockingham-13.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Rockingham 20"
|
||||
represents: "us/states/nh/districts/house/rockingham-20"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Rockingham 20 (NH State House of Representatives District Rockingham 20).
|
||||
|
||||
Represents [NH State House of Representatives District Rockingham 20](/us/states/nh/districts/house/rockingham-20.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Belknap 5"
|
||||
represents: "us/states/nh/districts/house/belknap-5"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Belknap 5 (NH State House of Representatives District Belknap 5).
|
||||
|
||||
Represents [NH State House of Representatives District Belknap 5](/us/states/nh/districts/house/belknap-5.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Hillsborough 24"
|
||||
represents: "us/states/nh/districts/house/hillsborough-24"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Hillsborough 24 (NH State House of Representatives District Hillsborough 24).
|
||||
|
||||
Represents [NH State House of Representatives District Hillsborough 24](/us/states/nh/districts/house/hillsborough-24.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Carroll 2"
|
||||
represents: "us/states/nh/districts/house/carroll-2"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Carroll 2 (NH State House of Representatives District Carroll 2).
|
||||
|
||||
Represents [NH State House of Representatives District Carroll 2](/us/states/nh/districts/house/carroll-2.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Rockingham 29"
|
||||
represents: "us/states/nh/districts/house/rockingham-29"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Rockingham 29 (NH State House of Representatives District Rockingham 29).
|
||||
|
||||
Represents [NH State House of Representatives District Rockingham 29](/us/states/nh/districts/house/rockingham-29.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Hillsborough 8"
|
||||
represents: "us/states/nh/districts/house/hillsborough-8"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Hillsborough 8 (NH State House of Representatives District Hillsborough 8).
|
||||
|
||||
Represents [NH State House of Representatives District Hillsborough 8](/us/states/nh/districts/house/hillsborough-8.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Hillsborough 21"
|
||||
represents: "us/states/nh/districts/house/hillsborough-21"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Hillsborough 21 (NH State House of Representatives District Hillsborough 21).
|
||||
|
||||
Represents [NH State House of Representatives District Hillsborough 21](/us/states/nh/districts/house/hillsborough-21.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Rockingham 4"
|
||||
represents: "us/states/nh/districts/house/rockingham-4"
|
||||
tenure:
|
||||
start: "2024-12-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Rockingham 4 (NH State House of Representatives District Rockingham 4).
|
||||
|
||||
Represents [NH State House of Representatives District Rockingham 4](/us/states/nh/districts/house/rockingham-4.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State Senate District 13"
|
||||
represents: "us/states/nh/districts/senate/13"
|
||||
tenure:
|
||||
start: "2018-12-05"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH Senate District 13 (NH State Senate District 13).
|
||||
|
||||
Represents [NH State Senate District 13](/us/states/nh/districts/senate/13.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Strafford 2"
|
||||
represents: "us/states/nh/districts/house/strafford-2"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Strafford 2 (NH State House of Representatives District Strafford 2).
|
||||
|
||||
Represents [NH State House of Representatives District Strafford 2](/us/states/nh/districts/house/strafford-2.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Merrimack 13"
|
||||
represents: "us/states/nh/districts/house/merrimack-13"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Merrimack 13 (NH State House of Representatives District Merrimack 13).
|
||||
|
||||
Represents [NH State House of Representatives District Merrimack 13](/us/states/nh/districts/house/merrimack-13.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Merrimack 16"
|
||||
represents: "us/states/nh/districts/house/merrimack-16"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Merrimack 16 (NH State House of Representatives District Merrimack 16).
|
||||
|
||||
Represents [NH State House of Representatives District Merrimack 16](/us/states/nh/districts/house/merrimack-16.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Merrimack 13"
|
||||
represents: "us/states/nh/districts/house/merrimack-13"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Merrimack 13 (NH State House of Representatives District Merrimack 13).
|
||||
|
||||
Represents [NH State House of Representatives District Merrimack 13](/us/states/nh/districts/house/merrimack-13.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Sullivan 6"
|
||||
represents: "us/states/nh/districts/house/sullivan-6"
|
||||
tenure:
|
||||
start: "2024-12-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Sullivan 6 (NH State House of Representatives District Sullivan 6).
|
||||
|
||||
Represents [NH State House of Representatives District Sullivan 6](/us/states/nh/districts/house/sullivan-6.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Hillsborough 5"
|
||||
represents: "us/states/nh/districts/house/hillsborough-5"
|
||||
tenure:
|
||||
start: "2024-12-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Hillsborough 5 (NH State House of Representatives District Hillsborough 5).
|
||||
|
||||
Represents [NH State House of Representatives District Hillsborough 5](/us/states/nh/districts/house/hillsborough-5.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Hillsborough 16"
|
||||
represents: "us/states/nh/districts/house/hillsborough-16"
|
||||
tenure:
|
||||
start: "2024-12-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Hillsborough 16 (NH State House of Representatives District Hillsborough 16).
|
||||
|
||||
Represents [NH State House of Representatives District Hillsborough 16](/us/states/nh/districts/house/hillsborough-16.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State Senate District 7"
|
||||
represents: "us/states/nh/districts/senate/7"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH Senate District 7 (NH State Senate District 7).
|
||||
|
||||
Represents [NH State Senate District 7](/us/states/nh/districts/senate/7.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Hillsborough 34"
|
||||
represents: "us/states/nh/districts/house/hillsborough-34"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Hillsborough 34 (NH State House of Representatives District Hillsborough 34).
|
||||
|
||||
Represents [NH State House of Representatives District Hillsborough 34](/us/states/nh/districts/house/hillsborough-34.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Merrimack 14"
|
||||
represents: "us/states/nh/districts/house/merrimack-14"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Merrimack 14 (NH State House of Representatives District Merrimack 14).
|
||||
|
||||
Represents [NH State House of Representatives District Merrimack 14](/us/states/nh/districts/house/merrimack-14.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Hillsborough 34"
|
||||
represents: "us/states/nh/districts/house/hillsborough-34"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Hillsborough 34 (NH State House of Representatives District Hillsborough 34).
|
||||
|
||||
Represents [NH State House of Representatives District Hillsborough 34](/us/states/nh/districts/house/hillsborough-34.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Rockingham 17"
|
||||
represents: "us/states/nh/districts/house/rockingham-17"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Rockingham 17 (NH State House of Representatives District Rockingham 17).
|
||||
|
||||
Represents [NH State House of Representatives District Rockingham 17](/us/states/nh/districts/house/rockingham-17.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Grafton 1"
|
||||
represents: "us/states/nh/districts/house/grafton-1"
|
||||
tenure:
|
||||
start: "2024-12-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Grafton 1 (NH State House of Representatives District Grafton 1).
|
||||
|
||||
Represents [NH State House of Representatives District Grafton 1](/us/states/nh/districts/house/grafton-1.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State Senate District 22"
|
||||
represents: "us/states/nh/districts/senate/22"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH Senate District 22 (NH State Senate District 22).
|
||||
|
||||
Represents [NH State Senate District 22](/us/states/nh/districts/senate/22.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Belknap 6"
|
||||
represents: "us/states/nh/districts/house/belknap-6"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Belknap 6 (NH State House of Representatives District Belknap 6).
|
||||
|
||||
Represents [NH State House of Representatives District Belknap 6](/us/states/nh/districts/house/belknap-6.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Grafton 16"
|
||||
represents: "us/states/nh/districts/house/grafton-16"
|
||||
tenure:
|
||||
start: "2023-09-06"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Grafton 16 (NH State House of Representatives District Grafton 16).
|
||||
|
||||
Represents [NH State House of Representatives District Grafton 16](/us/states/nh/districts/house/grafton-16.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Rockingham 13"
|
||||
represents: "us/states/nh/districts/house/rockingham-13"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Rockingham 13 (NH State House of Representatives District Rockingham 13).
|
||||
|
||||
Represents [NH State House of Representatives District Rockingham 13](/us/states/nh/districts/house/rockingham-13.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Rockingham 16"
|
||||
represents: "us/states/nh/districts/house/rockingham-16"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Rockingham 16 (NH State House of Representatives District Rockingham 16).
|
||||
|
||||
Represents [NH State House of Representatives District Rockingham 16](/us/states/nh/districts/house/rockingham-16.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Merrimack 9"
|
||||
represents: "us/states/nh/districts/house/merrimack-9"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Merrimack 9 (NH State House of Representatives District Merrimack 9).
|
||||
|
||||
Represents [NH State House of Representatives District Merrimack 9](/us/states/nh/districts/house/merrimack-9.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Rockingham 37"
|
||||
represents: "us/states/nh/districts/house/rockingham-37"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Rockingham 37 (NH State House of Representatives District Rockingham 37).
|
||||
|
||||
Represents [NH State House of Representatives District Rockingham 37](/us/states/nh/districts/house/rockingham-37.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Rockingham 13"
|
||||
represents: "us/states/nh/districts/house/rockingham-13"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Rockingham 13 (NH State House of Representatives District Rockingham 13).
|
||||
|
||||
Represents [NH State House of Representatives District Rockingham 13](/us/states/nh/districts/house/rockingham-13.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Carroll 1"
|
||||
represents: "us/states/nh/districts/house/carroll-1"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Carroll 1 (NH State House of Representatives District Carroll 1).
|
||||
|
||||
Represents [NH State House of Representatives District Carroll 1](/us/states/nh/districts/house/carroll-1.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Hillsborough 17"
|
||||
represents: "us/states/nh/districts/house/hillsborough-17"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Hillsborough 17 (NH State House of Representatives District Hillsborough 17).
|
||||
|
||||
Represents [NH State House of Representatives District Hillsborough 17](/us/states/nh/districts/house/hillsborough-17.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State Senate District 1"
|
||||
represents: "us/states/nh/districts/senate/1"
|
||||
tenure:
|
||||
start: "2024-12-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH Senate District 1 (NH State Senate District 1).
|
||||
|
||||
Represents [NH State Senate District 1](/us/states/nh/districts/senate/1.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Strafford 19"
|
||||
represents: "us/states/nh/districts/house/strafford-19"
|
||||
tenure:
|
||||
start: "2024-12-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Strafford 19 (NH State House of Representatives District Strafford 19).
|
||||
|
||||
Represents [NH State House of Representatives District Strafford 19](/us/states/nh/districts/house/strafford-19.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State Senate District 4"
|
||||
represents: "us/states/nh/districts/senate/4"
|
||||
tenure:
|
||||
start: "2012-12-05"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH Senate District 4 (NH State Senate District 4).
|
||||
|
||||
Represents [NH State Senate District 4](/us/states/nh/districts/senate/4.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Merrimack 5"
|
||||
represents: "us/states/nh/districts/house/merrimack-5"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Merrimack 5 (NH State House of Representatives District Merrimack 5).
|
||||
|
||||
Represents [NH State House of Representatives District Merrimack 5](/us/states/nh/districts/house/merrimack-5.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State Senate District 24"
|
||||
represents: "us/states/nh/districts/senate/24"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH Senate District 24 (NH State Senate District 24).
|
||||
|
||||
Represents [NH State Senate District 24](/us/states/nh/districts/senate/24.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Rockingham 18"
|
||||
represents: "us/states/nh/districts/house/rockingham-18"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Rockingham 18 (NH State House of Representatives District Rockingham 18).
|
||||
|
||||
Represents [NH State House of Representatives District Rockingham 18](/us/states/nh/districts/house/rockingham-18.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Cheshire 11"
|
||||
represents: "us/states/nh/districts/house/cheshire-11"
|
||||
tenure:
|
||||
start: "2024-12-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Cheshire 11 (NH State House of Representatives District Cheshire 11).
|
||||
|
||||
Represents [NH State House of Representatives District Cheshire 11](/us/states/nh/districts/house/cheshire-11.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Strafford 6"
|
||||
represents: "us/states/nh/districts/house/strafford-6"
|
||||
tenure:
|
||||
start: "2024-12-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Strafford 6 (NH State House of Representatives District Strafford 6).
|
||||
|
||||
Represents [NH State House of Representatives District Strafford 6](/us/states/nh/districts/house/strafford-6.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State Senate District 9"
|
||||
represents: "us/states/nh/districts/senate/9"
|
||||
tenure:
|
||||
start: "2020-12-02"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH Senate District 9 (NH State Senate District 9).
|
||||
|
||||
Represents [NH State Senate District 9](/us/states/nh/districts/senate/9.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Rockingham 24"
|
||||
represents: "us/states/nh/districts/house/rockingham-24"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Rockingham 24 (NH State House of Representatives District Rockingham 24).
|
||||
|
||||
Represents [NH State House of Representatives District Rockingham 24](/us/states/nh/districts/house/rockingham-24.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Rockingham 25"
|
||||
represents: "us/states/nh/districts/house/rockingham-25"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Rockingham 25 (NH State House of Representatives District Rockingham 25).
|
||||
|
||||
Represents [NH State House of Representatives District Rockingham 25](/us/states/nh/districts/house/rockingham-25.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Hillsborough 32"
|
||||
represents: "us/states/nh/districts/house/hillsborough-32"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Hillsborough 32 (NH State House of Representatives District Hillsborough 32).
|
||||
|
||||
Represents [NH State House of Representatives District Hillsborough 32](/us/states/nh/districts/house/hillsborough-32.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Hillsborough 36"
|
||||
represents: "us/states/nh/districts/house/hillsborough-36"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Hillsborough 36 (NH State House of Representatives District Hillsborough 36).
|
||||
|
||||
Represents [NH State House of Representatives District Hillsborough 36](/us/states/nh/districts/house/hillsborough-36.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Cheshire 13"
|
||||
represents: "us/states/nh/districts/house/cheshire-13"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Cheshire 13 (NH State House of Representatives District Cheshire 13).
|
||||
|
||||
Represents [NH State House of Representatives District Cheshire 13](/us/states/nh/districts/house/cheshire-13.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Cheshire 12"
|
||||
represents: "us/states/nh/districts/house/cheshire-12"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Cheshire 12 (NH State House of Representatives District Cheshire 12).
|
||||
|
||||
Represents [NH State House of Representatives District Cheshire 12](/us/states/nh/districts/house/cheshire-12.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Hillsborough 13"
|
||||
represents: "us/states/nh/districts/house/hillsborough-13"
|
||||
tenure:
|
||||
start: "2024-12-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Hillsborough 13 (NH State House of Representatives District Hillsborough 13).
|
||||
|
||||
Represents [NH State House of Representatives District Hillsborough 13](/us/states/nh/districts/house/hillsborough-13.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Grafton 18"
|
||||
represents: "us/states/nh/districts/house/grafton-18"
|
||||
tenure:
|
||||
start: "2024-12-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Grafton 18 (NH State House of Representatives District Grafton 18).
|
||||
|
||||
Represents [NH State House of Representatives District Grafton 18](/us/states/nh/districts/house/grafton-18.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Rockingham 9"
|
||||
represents: "us/states/nh/districts/house/rockingham-9"
|
||||
tenure:
|
||||
start: "2024-12-04"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Rockingham 9 (NH State House of Representatives District Rockingham 9).
|
||||
|
||||
Represents [NH State House of Representatives District Rockingham 9](/us/states/nh/districts/house/rockingham-9.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State Senate District 10"
|
||||
represents: "us/states/nh/districts/senate/10"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH Senate District 10 (NH State Senate District 10).
|
||||
|
||||
Represents [NH State Senate District 10](/us/states/nh/districts/senate/10.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Rockingham 16"
|
||||
represents: "us/states/nh/districts/house/rockingham-16"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Rockingham 16 (NH State House of Representatives District Rockingham 16).
|
||||
|
||||
Represents [NH State House of Representatives District Rockingham 16](/us/states/nh/districts/house/rockingham-16.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Belknap 8"
|
||||
represents: "us/states/nh/districts/house/belknap-8"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Belknap 8 (NH State House of Representatives District Belknap 8).
|
||||
|
||||
Represents [NH State House of Representatives District Belknap 8](/us/states/nh/districts/house/belknap-8.md).
|
||||
|
||||
## Sources
|
||||
|
||||
- tenure: OpenStates YAML via GitHub 2026-06-20
|
||||
|
||||
@@ -8,6 +8,7 @@ level: "state"
|
||||
branch: "legislative"
|
||||
state: "NH"
|
||||
district: "NH State House of Representatives District Cheshire 2"
|
||||
represents: "us/states/nh/districts/house/cheshire-2"
|
||||
tenure:
|
||||
start: "2022-12-07"
|
||||
current: true
|
||||
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
|
||||
|
||||
Current NH House District Cheshire 2 (NH State House of Representatives District Cheshire 2).
|
||||
|
||||
Represents [NH State House of Representatives District Cheshire 2](/us/states/nh/districts/house/cheshire-2.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