Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- tabular-classification
|
| 5 |
+
- tabular-regression
|
| 6 |
+
tags:
|
| 7 |
+
- immigration
|
| 8 |
+
- h1b
|
| 9 |
+
- perm
|
| 10 |
+
- labor
|
| 11 |
+
- visas
|
| 12 |
+
- dol
|
| 13 |
+
pretty_name: DOL H-1B LCA & PERM Labor Certification Database
|
| 14 |
+
size_categories:
|
| 15 |
+
- 1M<n<10M
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# DOL Visas Database (H-1B LCA + PERM)
|
| 19 |
+
|
| 20 |
+
Every H-1B/H-1B1/E-3 Labor Condition Application and PERM permanent labor
|
| 21 |
+
certification application disclosed by the DOL Office of Foreign Labor
|
| 22 |
+
Certification, FY2015 to present, as a single queryable DuckDB database.
|
| 23 |
+
**8,533,076 rows.**
|
| 24 |
+
|
| 25 |
+
| Table | Description | Rows | Cols | Coverage |
|
| 26 |
+
|-------|-------------|------|------|----------|
|
| 27 |
+
| `lca` | H-1B/H-1B1/E-3 Labor Condition Applications, one row per application per disclosure file, FY2015-present | 7,252,588 | 110 | FY2015 to FY2026 |
|
| 28 |
+
| `perm` | PERM permanent labor certification applications, one row per application per disclosure file, FY2015-present | 1,280,488 | 73 | FY2015 to FY2026 |
|
| 29 |
+
|
| 30 |
+
## Query it remotely
|
| 31 |
+
|
| 32 |
+
```sql
|
| 33 |
+
INSTALL httpfs; LOAD httpfs;
|
| 34 |
+
ATTACH 'https://huggingface.co/datasets/Nason/dol-visas-database/resolve/main/dol_visas.duckdb'
|
| 35 |
+
AS visas (READ_ONLY);
|
| 36 |
+
|
| 37 |
+
SELECT employer_name, COUNT(*) AS certified_lcas
|
| 38 |
+
FROM visas.lca
|
| 39 |
+
WHERE fiscal_year = 2025 AND case_status = 'CERTIFIED' AND is_latest
|
| 40 |
+
GROUP BY 1 ORDER BY 2 DESC LIMIT 10;
|
| 41 |
+
```
|
| 42 |
+
|
| 43 |
+
Or with the datapond package: `pip install datapond`, then
|
| 44 |
+
`datapond.connect('dol-visas')`.
|
| 45 |
+
|
| 46 |
+
Build pipeline, per-era column crosswalks, and full documentation:
|
| 47 |
+
https://github.com/ian-nason/dol-visas-database
|
| 48 |
+
|
| 49 |
+
|
| 50 |
+
# Changelog
|
| 51 |
+
|
| 52 |
+
## 2026-07-07 — Initial release
|
| 53 |
+
|
| 54 |
+
- `lca`: H-1B/H-1B1/E-3 Labor Condition Applications, FY2015 through
|
| 55 |
+
FY2026-to-date (~7.25M rows, 106 harmonized columns from 4 source-layout
|
| 56 |
+
eras).
|
| 57 |
+
- `perm`: PERM labor certification applications, FY2015 through
|
| 58 |
+
FY2026-to-date (~1.28M rows, 69 curated analytical columns from 3 form
|
| 59 |
+
eras; remaining source columns documented as drops in the crosswalk).
|
| 60 |
+
- All disclosure rows kept; `is_latest` flags the most recent appearance of
|
| 61 |
+
each case number per program.
|
| 62 |
+
- Categorical domains normalized across eras (case_status casing, wage
|
| 63 |
+
levels, Y/N flags, literal 'NULL' strings).
|
| 64 |
+
- Known upstream limits: FY2024+ PERM form drops citizenship/admission-class
|
| 65 |
+
and foreign-worker education fields; FY2019 LCA secondary worksite groups
|
| 66 |
+
(2-10) not retained; H-2A/H-2B/CW-1/prevailing-wage files out of scope.
|