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:
Fabio
2026-07-04 22:28:08 -04:00
parent 6c9990a115
commit 1beeaab2db
18213 changed files with 280514 additions and 3515 deletions
@@ -22,9 +22,54 @@ demographics:
race_native: 980
hispanic: 16422
bachelors_plus: 58430
districts:
- to: "us/states/de/districts/00"
rel: in-district
area_weight: 0.7499
- to: "us/states/de/districts/senate/15"
rel: in-district
area_weight: 0.3948
- to: "us/states/de/districts/senate/16"
rel: in-district
area_weight: 0.1805
- to: "us/states/de/districts/senate/14"
rel: in-district
area_weight: 0.1163
- to: "us/states/de/districts/senate/17"
rel: in-district
area_weight: 0.0371
- to: "us/states/de/districts/senate/18"
rel: in-district
area_weight: 0.0192
- to: "us/states/de/districts/house/30"
rel: in-district
area_weight: 0.2601
- to: "us/states/de/districts/house/28"
rel: in-district
area_weight: 0.133
- to: "us/states/de/districts/house/33"
rel: in-district
area_weight: 0.127
- to: "us/states/de/districts/house/11"
rel: in-district
area_weight: 0.1001
- to: "us/states/de/districts/house/32"
rel: in-district
area_weight: 0.0425
- to: "us/states/de/districts/house/29"
rel: in-district
area_weight: 0.0397
- to: "us/states/de/districts/house/34"
rel: in-district
area_weight: 0.0292
- to: "us/states/de/districts/house/31"
rel: in-district
area_weight: 0.0161
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, de]
timestamp: "2026-07-03"
@@ -56,6 +101,24 @@ County jurisdiction — 1 officeholders mapped.
| Hispanic/Latino | 16422 |
| Bachelor's or higher | 58430 |
## Districts
- [DE-00](/us/states/de/districts/00.md) — 75% (congressional)
- [DE Senate District 15](/us/states/de/districts/senate/15.md) — 39% (state senate)
- [DE Senate District 16](/us/states/de/districts/senate/16.md) — 18% (state senate)
- [DE Senate District 14](/us/states/de/districts/senate/14.md) — 12% (state senate)
- [DE Senate District 17](/us/states/de/districts/senate/17.md) — 4% (state senate)
- [DE Senate District 18](/us/states/de/districts/senate/18.md) — 2% (state senate)
- [DE House District 30](/us/states/de/districts/house/30.md) — 26% (state house)
- [DE House District 28](/us/states/de/districts/house/28.md) — 13% (state house)
- [DE House District 33](/us/states/de/districts/house/33.md) — 13% (state house)
- [DE House District 11](/us/states/de/districts/house/11.md) — 10% (state house)
- [DE House District 32](/us/states/de/districts/house/32.md) — 4% (state house)
- [DE House District 29](/us/states/de/districts/house/29.md) — 4% (state house)
- [DE House District 34](/us/states/de/districts/house/34.md) — 3% (state house)
- [DE House District 31](/us/states/de/districts/house/31.md) — 2% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,123 @@ demographics:
race_native: 2639
hispanic: 73584
bachelors_plus: 230059
districts:
- to: "us/states/de/districts/00"
rel: in-district
area_weight: 0.9046
- to: "us/states/de/districts/senate/14"
rel: in-district
area_weight: 0.2167
- to: "us/states/de/districts/senate/12"
rel: in-district
area_weight: 0.1512
- to: "us/states/de/districts/senate/10"
rel: in-district
area_weight: 0.1228
- to: "us/states/de/districts/senate/4"
rel: in-district
area_weight: 0.0898
- to: "us/states/de/districts/senate/8"
rel: in-district
area_weight: 0.0507
- to: "us/states/de/districts/senate/11"
rel: in-district
area_weight: 0.0416
- to: "us/states/de/districts/senate/9"
rel: in-district
area_weight: 0.0405
- to: "us/states/de/districts/senate/2"
rel: in-district
area_weight: 0.0349
- to: "us/states/de/districts/senate/13"
rel: in-district
area_weight: 0.0325
- to: "us/states/de/districts/senate/7"
rel: in-district
area_weight: 0.0297
- to: "us/states/de/districts/senate/5"
rel: in-district
area_weight: 0.027
- to: "us/states/de/districts/senate/1"
rel: in-district
area_weight: 0.0265
- to: "us/states/de/districts/senate/3"
rel: in-district
area_weight: 0.016
- to: "us/states/de/districts/house/9"
rel: in-district
area_weight: 0.1642
- to: "us/states/de/districts/house/11"
rel: in-district
area_weight: 0.1359
- to: "us/states/de/districts/house/12"
rel: in-district
area_weight: 0.0695
- to: "us/states/de/districts/house/27"
rel: in-district
area_weight: 0.0607
- to: "us/states/de/districts/house/8"
rel: in-district
area_weight: 0.0574
- to: "us/states/de/districts/house/17"
rel: in-district
area_weight: 0.0534
- to: "us/states/de/districts/house/15"
rel: in-district
area_weight: 0.0395
- to: "us/states/de/districts/house/23"
rel: in-district
area_weight: 0.0327
- to: "us/states/de/districts/house/22"
rel: in-district
area_weight: 0.0269
- to: "us/states/de/districts/house/16"
rel: in-district
area_weight: 0.0259
- to: "us/states/de/districts/house/25"
rel: in-district
area_weight: 0.025
- to: "us/states/de/districts/house/6"
rel: in-district
area_weight: 0.0193
- to: "us/states/de/districts/house/21"
rel: in-district
area_weight: 0.019
- to: "us/states/de/districts/house/19"
rel: in-district
area_weight: 0.0181
- to: "us/states/de/districts/house/10"
rel: in-district
area_weight: 0.0172
- to: "us/states/de/districts/house/18"
rel: in-district
area_weight: 0.0171
- to: "us/states/de/districts/house/24"
rel: in-district
area_weight: 0.0156
- to: "us/states/de/districts/house/26"
rel: in-district
area_weight: 0.0148
- to: "us/states/de/districts/house/2"
rel: in-district
area_weight: 0.0139
- to: "us/states/de/districts/house/7"
rel: in-district
area_weight: 0.013
- to: "us/states/de/districts/house/13"
rel: in-district
area_weight: 0.0114
- to: "us/states/de/districts/house/5"
rel: in-district
area_weight: 0.0109
- to: "us/states/de/districts/house/28"
rel: in-district
area_weight: 0.0101
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, de]
timestamp: "2026-07-03"
@@ -56,6 +170,47 @@ County jurisdiction — 3 officeholders mapped.
| Hispanic/Latino | 73584 |
| Bachelor's or higher | 230059 |
## Districts
- [DE-00](/us/states/de/districts/00.md) — 90% (congressional)
- [DE Senate District 14](/us/states/de/districts/senate/14.md) — 22% (state senate)
- [DE Senate District 12](/us/states/de/districts/senate/12.md) — 15% (state senate)
- [DE Senate District 10](/us/states/de/districts/senate/10.md) — 12% (state senate)
- [DE Senate District 4](/us/states/de/districts/senate/4.md) — 9% (state senate)
- [DE Senate District 8](/us/states/de/districts/senate/8.md) — 5% (state senate)
- [DE Senate District 11](/us/states/de/districts/senate/11.md) — 4% (state senate)
- [DE Senate District 9](/us/states/de/districts/senate/9.md) — 4% (state senate)
- [DE Senate District 2](/us/states/de/districts/senate/2.md) — 3% (state senate)
- [DE Senate District 13](/us/states/de/districts/senate/13.md) — 3% (state senate)
- [DE Senate District 7](/us/states/de/districts/senate/7.md) — 3% (state senate)
- [DE Senate District 5](/us/states/de/districts/senate/5.md) — 3% (state senate)
- [DE Senate District 1](/us/states/de/districts/senate/1.md) — 3% (state senate)
- [DE Senate District 3](/us/states/de/districts/senate/3.md) — 2% (state senate)
- [DE House District 9](/us/states/de/districts/house/9.md) — 16% (state house)
- [DE House District 11](/us/states/de/districts/house/11.md) — 14% (state house)
- [DE House District 12](/us/states/de/districts/house/12.md) — 7% (state house)
- [DE House District 27](/us/states/de/districts/house/27.md) — 6% (state house)
- [DE House District 8](/us/states/de/districts/house/8.md) — 6% (state house)
- [DE House District 17](/us/states/de/districts/house/17.md) — 5% (state house)
- [DE House District 15](/us/states/de/districts/house/15.md) — 4% (state house)
- [DE House District 23](/us/states/de/districts/house/23.md) — 3% (state house)
- [DE House District 22](/us/states/de/districts/house/22.md) — 3% (state house)
- [DE House District 16](/us/states/de/districts/house/16.md) — 3% (state house)
- [DE House District 25](/us/states/de/districts/house/25.md) — 2% (state house)
- [DE House District 6](/us/states/de/districts/house/6.md) — 2% (state house)
- [DE House District 21](/us/states/de/districts/house/21.md) — 2% (state house)
- [DE House District 19](/us/states/de/districts/house/19.md) — 2% (state house)
- [DE House District 10](/us/states/de/districts/house/10.md) — 2% (state house)
- [DE House District 18](/us/states/de/districts/house/18.md) — 2% (state house)
- [DE House District 24](/us/states/de/districts/house/24.md) — 2% (state house)
- [DE House District 26](/us/states/de/districts/house/26.md) — 1% (state house)
- [DE House District 2](/us/states/de/districts/house/2.md) — 1% (state house)
- [DE House District 7](/us/states/de/districts/house/7.md) — 1% (state house)
- [DE House District 13](/us/states/de/districts/house/13.md) — 1% (state house)
- [DE House District 5](/us/states/de/districts/house/5.md) — 1% (state house)
- [DE House District 28](/us/states/de/districts/house/28.md) — 1% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -22,9 +22,60 @@ demographics:
race_native: 583
hispanic: 32807
bachelors_plus: 99838
districts:
- to: "us/states/de/districts/00"
rel: in-district
area_weight: 0.8183
- to: "us/states/de/districts/senate/21"
rel: in-district
area_weight: 0.2455
- to: "us/states/de/districts/senate/18"
rel: in-district
area_weight: 0.2177
- to: "us/states/de/districts/senate/19"
rel: in-district
area_weight: 0.1386
- to: "us/states/de/districts/senate/6"
rel: in-district
area_weight: 0.1087
- to: "us/states/de/districts/senate/20"
rel: in-district
area_weight: 0.1069
- to: "us/states/de/districts/house/35"
rel: in-district
area_weight: 0.1654
- to: "us/states/de/districts/house/40"
rel: in-district
area_weight: 0.1303
- to: "us/states/de/districts/house/41"
rel: in-district
area_weight: 0.1116
- to: "us/states/de/districts/house/36"
rel: in-district
area_weight: 0.1031
- to: "us/states/de/districts/house/37"
rel: in-district
area_weight: 0.075
- to: "us/states/de/districts/house/39"
rel: in-district
area_weight: 0.059
- to: "us/states/de/districts/house/20"
rel: in-district
area_weight: 0.0483
- to: "us/states/de/districts/house/38"
rel: in-district
area_weight: 0.0452
- to: "us/states/de/districts/house/4"
rel: in-district
area_weight: 0.0436
- to: "us/states/de/districts/house/14"
rel: in-district
area_weight: 0.0358
sources:
- field: demographics
source: Census ACS 2023
source: "Census ACS 2023"
- field: districts
source: "PostGIS area-intersection over Census TIGER 2024 boundaries"
confidence: official
tags: [jurisdiction, county, de]
timestamp: "2026-07-03"
@@ -56,6 +107,26 @@ County jurisdiction — 2 officeholders mapped.
| Hispanic/Latino | 32807 |
| Bachelor's or higher | 99838 |
## Districts
- [DE-00](/us/states/de/districts/00.md) — 82% (congressional)
- [DE Senate District 21](/us/states/de/districts/senate/21.md) — 25% (state senate)
- [DE Senate District 18](/us/states/de/districts/senate/18.md) — 22% (state senate)
- [DE Senate District 19](/us/states/de/districts/senate/19.md) — 14% (state senate)
- [DE Senate District 6](/us/states/de/districts/senate/6.md) — 11% (state senate)
- [DE Senate District 20](/us/states/de/districts/senate/20.md) — 11% (state senate)
- [DE House District 35](/us/states/de/districts/house/35.md) — 17% (state house)
- [DE House District 40](/us/states/de/districts/house/40.md) — 13% (state house)
- [DE House District 41](/us/states/de/districts/house/41.md) — 11% (state house)
- [DE House District 36](/us/states/de/districts/house/36.md) — 10% (state house)
- [DE House District 37](/us/states/de/districts/house/37.md) — 8% (state house)
- [DE House District 39](/us/states/de/districts/house/39.md) — 6% (state house)
- [DE House District 20](/us/states/de/districts/house/20.md) — 5% (state house)
- [DE House District 38](/us/states/de/districts/house/38.md) — 5% (state house)
- [DE House District 4](/us/states/de/districts/house/4.md) — 4% (state house)
- [DE House District 14](/us/states/de/districts/house/14.md) — 4% (state house)
## Source
- demographics: Census ACS 2023
- districts: PostGIS area-intersection over Census TIGER 2024 boundaries
@@ -0,0 +1,21 @@
---
type: Jurisdiction
title: "DE-00"
classification: congressional-district
state: "DE"
district: "DE-00"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, congressional-district, de]
timestamp: "2026-07-03"
---
# DE-00
Congressional district DE-00.
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 1"
classification: state-house-district
state: "DE"
chamber: "house"
district: "1"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 1
State House district 1 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 10"
classification: state-house-district
state: "DE"
chamber: "house"
district: "10"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 10
State House district 10 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 11"
classification: state-house-district
state: "DE"
chamber: "house"
district: "11"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 11
State House district 11 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 12"
classification: state-house-district
state: "DE"
chamber: "house"
district: "12"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 12
State House district 12 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 13"
classification: state-house-district
state: "DE"
chamber: "house"
district: "13"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 13
State House district 13 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 14"
classification: state-house-district
state: "DE"
chamber: "house"
district: "14"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 14
State House district 14 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 15"
classification: state-house-district
state: "DE"
chamber: "house"
district: "15"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 15
State House district 15 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 16"
classification: state-house-district
state: "DE"
chamber: "house"
district: "16"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 16
State House district 16 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 17"
classification: state-house-district
state: "DE"
chamber: "house"
district: "17"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 17
State House district 17 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 18"
classification: state-house-district
state: "DE"
chamber: "house"
district: "18"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 18
State House district 18 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 19"
classification: state-house-district
state: "DE"
chamber: "house"
district: "19"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 19
State House district 19 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 2"
classification: state-house-district
state: "DE"
chamber: "house"
district: "2"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 2
State House district 2 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 20"
classification: state-house-district
state: "DE"
chamber: "house"
district: "20"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 20
State House district 20 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 21"
classification: state-house-district
state: "DE"
chamber: "house"
district: "21"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 21
State House district 21 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 22"
classification: state-house-district
state: "DE"
chamber: "house"
district: "22"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 22
State House district 22 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 23"
classification: state-house-district
state: "DE"
chamber: "house"
district: "23"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 23
State House district 23 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 24"
classification: state-house-district
state: "DE"
chamber: "house"
district: "24"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 24
State House district 24 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 25"
classification: state-house-district
state: "DE"
chamber: "house"
district: "25"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 25
State House district 25 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 26"
classification: state-house-district
state: "DE"
chamber: "house"
district: "26"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 26
State House district 26 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 27"
classification: state-house-district
state: "DE"
chamber: "house"
district: "27"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 27
State House district 27 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 28"
classification: state-house-district
state: "DE"
chamber: "house"
district: "28"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 28
State House district 28 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 29"
classification: state-house-district
state: "DE"
chamber: "house"
district: "29"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 29
State House district 29 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 3"
classification: state-house-district
state: "DE"
chamber: "house"
district: "3"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 3
State House district 3 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 30"
classification: state-house-district
state: "DE"
chamber: "house"
district: "30"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 30
State House district 30 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 31"
classification: state-house-district
state: "DE"
chamber: "house"
district: "31"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 31
State House district 31 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 32"
classification: state-house-district
state: "DE"
chamber: "house"
district: "32"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 32
State House district 32 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 33"
classification: state-house-district
state: "DE"
chamber: "house"
district: "33"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 33
State House district 33 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 34"
classification: state-house-district
state: "DE"
chamber: "house"
district: "34"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 34
State House district 34 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 35"
classification: state-house-district
state: "DE"
chamber: "house"
district: "35"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 35
State House district 35 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 36"
classification: state-house-district
state: "DE"
chamber: "house"
district: "36"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 36
State House district 36 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 37"
classification: state-house-district
state: "DE"
chamber: "house"
district: "37"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 37
State House district 37 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 38"
classification: state-house-district
state: "DE"
chamber: "house"
district: "38"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 38
State House district 38 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 39"
classification: state-house-district
state: "DE"
chamber: "house"
district: "39"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 39
State House district 39 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 4"
classification: state-house-district
state: "DE"
chamber: "house"
district: "4"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 4
State House district 4 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 40"
classification: state-house-district
state: "DE"
chamber: "house"
district: "40"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 40
State House district 40 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 41"
classification: state-house-district
state: "DE"
chamber: "house"
district: "41"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 41
State House district 41 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 5"
classification: state-house-district
state: "DE"
chamber: "house"
district: "5"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 5
State House district 5 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 6"
classification: state-house-district
state: "DE"
chamber: "house"
district: "6"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 6
State House district 6 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 7"
classification: state-house-district
state: "DE"
chamber: "house"
district: "7"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 7
State House district 7 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 8"
classification: state-house-district
state: "DE"
chamber: "house"
district: "8"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 8
State House district 8 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE House District 9"
classification: state-house-district
state: "DE"
chamber: "house"
district: "9"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-house-district, de]
timestamp: "2026-07-03"
---
# DE House District 9
State House district 9 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE Senate District 1"
classification: state-senate-district
state: "DE"
chamber: "senate"
district: "1"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, de]
timestamp: "2026-07-03"
---
# DE Senate District 1
State Senate district 1 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE Senate District 10"
classification: state-senate-district
state: "DE"
chamber: "senate"
district: "10"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, de]
timestamp: "2026-07-03"
---
# DE Senate District 10
State Senate district 10 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE Senate District 11"
classification: state-senate-district
state: "DE"
chamber: "senate"
district: "11"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, de]
timestamp: "2026-07-03"
---
# DE Senate District 11
State Senate district 11 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE Senate District 12"
classification: state-senate-district
state: "DE"
chamber: "senate"
district: "12"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, de]
timestamp: "2026-07-03"
---
# DE Senate District 12
State Senate district 12 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE Senate District 13"
classification: state-senate-district
state: "DE"
chamber: "senate"
district: "13"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, de]
timestamp: "2026-07-03"
---
# DE Senate District 13
State Senate district 13 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE Senate District 14"
classification: state-senate-district
state: "DE"
chamber: "senate"
district: "14"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, de]
timestamp: "2026-07-03"
---
# DE Senate District 14
State Senate district 14 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE Senate District 15"
classification: state-senate-district
state: "DE"
chamber: "senate"
district: "15"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, de]
timestamp: "2026-07-03"
---
# DE Senate District 15
State Senate district 15 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE Senate District 16"
classification: state-senate-district
state: "DE"
chamber: "senate"
district: "16"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, de]
timestamp: "2026-07-03"
---
# DE Senate District 16
State Senate district 16 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE Senate District 17"
classification: state-senate-district
state: "DE"
chamber: "senate"
district: "17"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, de]
timestamp: "2026-07-03"
---
# DE Senate District 17
State Senate district 17 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE Senate District 18"
classification: state-senate-district
state: "DE"
chamber: "senate"
district: "18"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, de]
timestamp: "2026-07-03"
---
# DE Senate District 18
State Senate district 18 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE Senate District 19"
classification: state-senate-district
state: "DE"
chamber: "senate"
district: "19"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, de]
timestamp: "2026-07-03"
---
# DE Senate District 19
State Senate district 19 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE Senate District 2"
classification: state-senate-district
state: "DE"
chamber: "senate"
district: "2"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, de]
timestamp: "2026-07-03"
---
# DE Senate District 2
State Senate district 2 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE Senate District 20"
classification: state-senate-district
state: "DE"
chamber: "senate"
district: "20"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, de]
timestamp: "2026-07-03"
---
# DE Senate District 20
State Senate district 20 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE Senate District 21"
classification: state-senate-district
state: "DE"
chamber: "senate"
district: "21"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, de]
timestamp: "2026-07-03"
---
# DE Senate District 21
State Senate district 21 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE Senate District 3"
classification: state-senate-district
state: "DE"
chamber: "senate"
district: "3"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, de]
timestamp: "2026-07-03"
---
# DE Senate District 3
State Senate district 3 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE Senate District 4"
classification: state-senate-district
state: "DE"
chamber: "senate"
district: "4"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, de]
timestamp: "2026-07-03"
---
# DE Senate District 4
State Senate district 4 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE Senate District 5"
classification: state-senate-district
state: "DE"
chamber: "senate"
district: "5"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, de]
timestamp: "2026-07-03"
---
# DE Senate District 5
State Senate district 5 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE Senate District 6"
classification: state-senate-district
state: "DE"
chamber: "senate"
district: "6"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, de]
timestamp: "2026-07-03"
---
# DE Senate District 6
State Senate district 6 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE Senate District 7"
classification: state-senate-district
state: "DE"
chamber: "senate"
district: "7"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, de]
timestamp: "2026-07-03"
---
# DE Senate District 7
State Senate district 7 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE Senate District 8"
classification: state-senate-district
state: "DE"
chamber: "senate"
district: "8"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, de]
timestamp: "2026-07-03"
---
# DE Senate District 8
State Senate district 8 (DE).
## Source
- boundary: Census TIGER 2024
@@ -0,0 +1,22 @@
---
type: Jurisdiction
title: "DE Senate District 9"
classification: state-senate-district
state: "DE"
chamber: "senate"
district: "9"
sources:
- field: boundary
source: "Census TIGER 2024"
confidence: official
tags: [jurisdiction, state-senate-district, de]
timestamp: "2026-07-03"
---
# DE Senate District 9
State Senate district 9 (DE).
## Source
- boundary: Census TIGER 2024
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State House of Representatives District 20"
represents: "us/states/de/districts/house/20"
tenure:
start: "2025-08-12"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE House District 20 (DE State House of Representatives District 20).
Represents [DE State House of Representatives District 20](/us/states/de/districts/house/20.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State House of Representatives District 29"
represents: "us/states/de/districts/house/29"
tenure:
start: "2018-11-07"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE House District 29 (DE State House of Representatives District 29).
Represents [DE State House of Representatives District 29](/us/states/de/districts/house/29.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State House of Representatives District 28"
represents: "us/states/de/districts/house/28"
tenure:
start: "2009-01-13"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE House District 28 (DE State House of Representatives District 28).
Represents [DE State House of Representatives District 28](/us/states/de/districts/house/28.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State Senate District 19"
represents: "us/states/de/districts/senate/19"
tenure:
start: "2012-11-07"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE Senate District 19 (DE State Senate District 19).
Represents [DE State Senate District 19](/us/states/de/districts/senate/19.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State House of Representatives District 36"
represents: "us/states/de/districts/house/36"
tenure:
start: "2018-11-07"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE House District 36 (DE State House of Representatives District 36).
Represents [DE State House of Representatives District 36](/us/states/de/districts/house/36.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State Senate District 11"
represents: "us/states/de/districts/senate/11"
tenure:
start: "2013-01-08"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE Senate District 11 (DE State Senate District 11).
Represents [DE State Senate District 11](/us/states/de/districts/senate/11.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State Senate District 21"
represents: "us/states/de/districts/senate/21"
tenure:
start: "2014-11-05"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE Senate District 21 (DE State Senate District 21).
Represents [DE State Senate District 21](/us/states/de/districts/senate/21.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State House of Representatives District 33"
represents: "us/states/de/districts/house/33"
tenure:
start: "2016-11-09"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE House District 33 (DE State House of Representatives District 33).
Represents [DE State House of Representatives District 33](/us/states/de/districts/house/33.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State House of Representatives District 14"
represents: "us/states/de/districts/house/14"
tenure:
start: "2024-11-06"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE House District 14 (DE State House of Representatives District 14).
Represents [DE State House of Representatives District 14](/us/states/de/districts/house/14.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State House of Representatives District 25"
represents: "us/states/de/districts/house/25"
tenure:
start: "2022-11-09"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE House District 25 (DE State House of Representatives District 25).
Represents [DE State House of Representatives District 25](/us/states/de/districts/house/25.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State Senate District 1"
represents: "us/states/de/districts/senate/1"
tenure:
start: "2025-02-16"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE Senate District 1 (DE State Senate District 1).
Represents [DE State Senate District 1](/us/states/de/districts/senate/1.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State House of Representatives District 39"
represents: "us/states/de/districts/house/39"
tenure:
start: "2007-01-09"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE House District 39 (DE State House of Representatives District 39).
Represents [DE State House of Representatives District 39](/us/states/de/districts/house/39.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State Senate District 2"
represents: "us/states/de/districts/senate/2"
tenure:
start: "2018-11-07"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE Senate District 2 (DE State Senate District 2).
Represents [DE State Senate District 2](/us/states/de/districts/senate/2.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State Senate District 15"
represents: "us/states/de/districts/senate/15"
tenure:
start: "2010-11-03"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE Senate District 15 (DE State Senate District 15).
Represents [DE State Senate District 15](/us/states/de/districts/senate/15.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State Senate District 8"
represents: "us/states/de/districts/senate/8"
tenure:
start: "1991-01-08"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE Senate District 8 (DE State Senate District 8).
Represents [DE State Senate District 8](/us/states/de/districts/senate/8.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State Senate District 18"
represents: "us/states/de/districts/senate/18"
tenure:
start: "2018-11-07"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE Senate District 18 (DE State Senate District 18).
Represents [DE State Senate District 18](/us/states/de/districts/senate/18.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State House of Representatives District 6"
represents: "us/states/de/districts/house/6"
tenure:
start: "2011-01-11"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE House District 6 (DE State House of Representatives District 6).
Represents [DE State House of Representatives District 6](/us/states/de/districts/house/6.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State House of Representatives District 13"
represents: "us/states/de/districts/house/13"
tenure:
start: "2022-11-09"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE House District 13 (DE State House of Representatives District 13).
Represents [DE State House of Representatives District 13](/us/states/de/districts/house/13.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State House of Representatives District 24"
represents: "us/states/de/districts/house/24"
tenure:
start: "2011-01-11"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE House District 24 (DE State House of Representatives District 24).
Represents [DE State House of Representatives District 24](/us/states/de/districts/house/24.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State Senate District 16"
represents: "us/states/de/districts/senate/16"
tenure:
start: "2022-11-09"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE Senate District 16 (DE State Senate District 16).
Represents [DE State Senate District 16](/us/states/de/districts/senate/16.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State House of Representatives District 27"
represents: "us/states/de/districts/house/27"
tenure:
start: "2020-11-04"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE House District 27 (DE State House of Representatives District 27).
Represents [DE State House of Representatives District 27](/us/states/de/districts/house/27.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State House of Representatives District 21"
represents: "us/states/de/districts/house/21"
tenure:
start: "2024-11-06"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE House District 21 (DE State House of Representatives District 21).
Represents [DE State House of Representatives District 21](/us/states/de/districts/house/21.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State House of Representatives District 16"
represents: "us/states/de/districts/house/16"
tenure:
start: "2018-11-07"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE House District 16 (DE State House of Representatives District 16).
Represents [DE State House of Representatives District 16](/us/states/de/districts/house/16.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State Senate District 20"
represents: "us/states/de/districts/senate/20"
tenure:
start: "2012-11-07"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE Senate District 20 (DE State Senate District 20).
Represents [DE State Senate District 20](/us/states/de/districts/senate/20.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State Senate District 9"
represents: "us/states/de/districts/senate/9"
tenure:
start: "2016-11-09"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE Senate District 9 (DE State Senate District 9).
Represents [DE State Senate District 9](/us/states/de/districts/senate/9.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State House of Representatives District 4"
represents: "us/states/de/districts/house/4"
tenure:
start: "2022-11-09"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE House District 4 (DE State House of Representatives District 4).
Represents [DE State House of Representatives District 4](/us/states/de/districts/house/4.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State House of Representatives District 11"
represents: "us/states/de/districts/house/11"
tenure:
start: "2013-01-08"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE House District 11 (DE State House of Representatives District 11).
Represents [DE State House of Representatives District 11](/us/states/de/districts/house/11.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State House of Representatives District 35"
represents: "us/states/de/districts/house/35"
tenure:
start: "2018-11-07"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE House District 35 (DE State House of Representatives District 35).
Represents [DE State House of Representatives District 35](/us/states/de/districts/house/35.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State House of Representatives District 3"
represents: "us/states/de/districts/house/3"
tenure:
start: "2024-11-06"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE House District 3 (DE State House of Representatives District 3).
Represents [DE State House of Representatives District 3](/us/states/de/districts/house/3.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State House of Representatives District 15"
represents: "us/states/de/districts/house/15"
tenure:
start: "2024-11-06"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE House District 15 (DE State House of Representatives District 15).
Represents [DE State House of Representatives District 15](/us/states/de/districts/house/15.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State House of Representatives District 5"
represents: "us/states/de/districts/house/5"
tenure:
start: "2018-11-07"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE House District 5 (DE State House of Representatives District 5).
Represents [DE State House of Representatives District 5](/us/states/de/districts/house/5.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State House of Representatives District 32"
represents: "us/states/de/districts/house/32"
tenure:
start: "2022-11-09"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE House District 32 (DE State House of Representatives District 32).
Represents [DE State House of Representatives District 32](/us/states/de/districts/house/32.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State House of Representatives District 9"
represents: "us/states/de/districts/house/9"
tenure:
start: "2015-01-13"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE House District 9 (DE State House of Representatives District 9).
Represents [DE State House of Representatives District 9](/us/states/de/districts/house/9.md).
## Sources
- tenure: OpenStates YAML via GitHub 2026-06-20
@@ -8,6 +8,7 @@ level: "state"
branch: "legislative"
state: "DE"
district: "DE State House of Representatives District 19"
represents: "us/states/de/districts/house/19"
tenure:
start: "2013-01-08"
current: true
@@ -33,6 +34,8 @@ timestamp: "2026-07-04"
Current DE House District 19 (DE State House of Representatives District 19).
Represents [DE State House of Representatives District 19](/us/states/de/districts/house/19.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