Add README with schema documentation
Browse files
README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
tags:
|
| 4 |
+
- mortgage
|
| 5 |
+
- fannie-mae
|
| 6 |
+
- ami
|
| 7 |
+
- income-limits
|
| 8 |
+
- homeready
|
| 9 |
+
- county
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# Fannie Mae 2026 County-Level AMI Data
|
| 13 |
+
|
| 14 |
+
Official 2026 Area Median Income (AMI) data from Fannie Mae for all 3,144 US counties.
|
| 15 |
+
Used for HomeReady® and Home Possible® income eligibility checks.
|
| 16 |
+
|
| 17 |
+
## Files
|
| 18 |
+
|
| 19 |
+
| File | Description |
|
| 20 |
+
|---|---|
|
| 21 |
+
| `fannie-ami-2026-county.json` | Key-value lookup by 5-digit county FIPS code |
|
| 22 |
+
| `fannie-ami-2026.jsonl` | JSONL format, one record per county |
|
| 23 |
+
| `fannie-ami-2026-by-state.json` | Organized by state name |
|
| 24 |
+
|
| 25 |
+
## Schema
|
| 26 |
+
|
| 27 |
+
Each record contains:
|
| 28 |
+
- `fips` — 5-digit county FIPS code (e.g., `"28035"`)
|
| 29 |
+
- `county` — County name
|
| 30 |
+
- `state` — State name
|
| 31 |
+
- `highCostArea` — Boolean, true if designated high-cost area
|
| 32 |
+
- `ami` — 2026 Area Median Income
|
| 33 |
+
- `veryLowIncome` — 50% AMI (very low-income threshold)
|
| 34 |
+
- `lowIncome` — 80% AMI (low-income threshold)
|
| 35 |
+
- `homeReadyLimit` — HomeReady® borrower income eligibility limit (= HP Borrower's Income Eligibility from Fannie Mae)
|
| 36 |
+
- `ami2025` — 2025 AMI for year-over-year comparison
|
| 37 |
+
- `amiChange` — Dollar change from 2025 to 2026
|
| 38 |
+
- `totalTracts` — Number of census tracts in county
|
| 39 |
+
|
| 40 |
+
## Usage
|
| 41 |
+
|
| 42 |
+
```javascript
|
| 43 |
+
// Fetch county AMI data
|
| 44 |
+
const res = await fetch(
|
| 45 |
+
'https://huggingface.co/datasets/Good-News-Lending/fannie-ami-2026/resolve/main/fannie-ami-2026-county.json'
|
| 46 |
+
);
|
| 47 |
+
const amiData = await res.json();
|
| 48 |
+
|
| 49 |
+
// Look up by 5-digit FIPS
|
| 50 |
+
const forrestCountyMS = amiData['28035'];
|
| 51 |
+
// { fips: '28035', county: 'Forrest', state: 'Mississippi', ami: 79800, homeReadyLimit: 63840, ... }
|
| 52 |
+
```
|
| 53 |
+
|
| 54 |
+
## Source
|
| 55 |
+
|
| 56 |
+
Fannie Mae 2026 MFI/AMI County Data
|
| 57 |
+
Published: 2026
|
| 58 |
+
Source: [Fannie Mae AMI Lookup Tool](https://ami-lookup-tool.fanniemae.com/amilookuptool/)
|
| 59 |
+
|
| 60 |
+
## Maintained By
|
| 61 |
+
|
| 62 |
+
[Good News Lending](https://www.goodnewslending.com)
|
| 63 |
+
Beau Thompson, NMLS #1615561 | Tate Thompson, NMLS #2473962
|