industries_sic_map
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where industry_slug = "education"
This data as json, CSV (advanced)
| Link | sic_code | industry_slug | is_primary |
|---|---|---|---|
| 8200,education | 8200 | education | 1 |
| 8211,education | 8211 | education | 1 |
| 8221,education | 8221 | education | 1 |
| 8244,education | 8244 | education | 1 |
| 8249,education | 8249 | education | 1 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE industries_sic_map (
sic_code TEXT NOT NULL,
industry_slug TEXT NOT NULL,
is_primary INTEGER NOT NULL DEFAULT 0,
PRIMARY KEY (sic_code, industry_slug),
FOREIGN KEY (industry_slug) REFERENCES industries(industry_slug)
);