documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "FEMA", document_type = "Proposed Rule" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, subtype, posted_date, posted_month, comment_start_date, comment_end_date, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
| id | agency_id | docket_id | title | document_type | subtype | posted_date ▲ | posted_year | posted_month | comment_start_date | comment_end_date | last_modified | fr_doc_num | open_for_comment | withdrawn | object_id |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FEMA-2015-0006-0378 | FEMA | Guidelines for Implementing Executive Order 11988, Floodplain Management FEMA-2015-0006 | Updates to Floodplain Management and Protection of Wetlands Regulations To Implement Executive Order 13690 and the Federal Flood Risk Management Standard | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2016-09-20T04:00:00Z | 2016 | 9 | 2016-09-20T04:00:00Z | 2016-10-22T03:59:59Z | 2016-10-22T13:01:46Z | 2016-22496 | 0 | 0 | 090000648222d3de |
| FEMA-2015-0006-0373 | FEMA | Guidelines for Implementing Executive Order 11988, Floodplain Management FEMA-2015-0006 | Updates to Floodplain Management and Protection of Wetlands Regulations To Implement Executive Order 13690 and the Federal Flood Risk Management Standard | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2016-08-22T04:00:00Z | 2016 | 8 | 2016-08-22T04:00:00Z | 2016-10-22T03:59:59Z | 2016-11-08T02:01:03Z | 2016-19810 | 0 | 0 | 090000648218db55 |
| FEMA-2015-0006-0374 | FEMA | Guidelines for Implementing Executive Order 11988, Floodplain Management FEMA-2015-0006 | Guidance for Implementing the Federal Flood Risk Management Standard | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2016-08-22T04:00:00Z | 2016 | 8 | 2016-08-22T04:00:00Z | 2016-10-22T03:59:59Z | 2016-10-22T13:01:39Z | 2016-19809 | 0 | 0 | 090000648218dcfc |
| FEMA-2016-0002-0080 | FEMA | Proposed Flood Elevation Determinations (Proposed Rule, Part 67); Changes in Flood Elevation Determinations (Interim Rule, Part 65); Final Flood Elevation Determinations (Final Rule, Part 67); Changes in Flood Elevation Determinations (Final Rule, Part 65); Flood Elevation Determination (Correction) ; Suspension of Community Eligibility (Final Rule) FEMA-2016-0002 | Proposed Flood Elevation Determinations for Will County, Illinois, and Incorporated Areas; Withdrawal | Proposed Rule | Withdrawal | 2016-07-05T04:00:00Z | 2016 | 7 | 2016-07-13T17:11:03Z | 2016-15747 | 0 | 0 | 090000648208744b | ||
| FEMA-2016-0012-0001 | FEMA | National Flood Insurance Program (NFIP): Financial Assistance/Subsidy Arrangement FEMA-2016-0012 | National Flood Insurance Program (NFIP): Financial Assistance/Subsidy Arrangement | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2016-05-23T04:00:00Z | 2016 | 5 | 2016-05-23T04:00:00Z | 2016-07-23T03:59:59Z | 2016-07-23T01:01:12Z | 2016-11701 | 0 | 0 | 0900006481fe73d7 |
| FEMA-2016-0002-0017 | FEMA | Proposed Flood Elevation Determinations (Proposed Rule, Part 67); Changes in Flood Elevation Determinations (Interim Rule, Part 65); Final Flood Elevation Determinations (Final Rule, Part 67); Changes in Flood Elevation Determinations (Final Rule, Part 65); Flood Elevation Determination (Correction) ; Suspension of Community Eligibility (Final Rule) FEMA-2016-0002 | Proposed Flood Elevation Determinations for Gladwin County, Michigan (All Jurisdictions) | Proposed Rule | Withdrawal | 2016-02-17T05:00:00Z | 2016 | 2 | 2016-02-17T16:53:23Z | 2016-03243 | 0 | 0 | 0900006481e71344 | ||
| FEMA-2016-0003-0001 | FEMA | Establishing a Deductible for FEMA’s Public Assistance Program FEMA-2016-0003 | Establishing a Deductible for FEMA’s Public Assistance Program | Proposed Rule | Advance Notice of Proposed Rulemaking (ANPRM) | 2016-01-20T05:00:00Z | 2016 | 1 | 2016-01-20T05:00:00Z | 2016-03-22T03:59:59Z | 2016-04-08T19:00:45Z | 2016-00997 | 0 | 0 | 0900006481e20017 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE documents (
id TEXT PRIMARY KEY,
agency_id TEXT,
docket_id TEXT REFERENCES dockets(id),
title TEXT,
document_type TEXT,
subtype TEXT,
posted_date TEXT,
posted_year INTEGER,
posted_month INTEGER,
comment_start_date TEXT,
comment_end_date TEXT,
last_modified TEXT,
fr_doc_num TEXT,
open_for_comment INTEGER,
withdrawn INTEGER,
object_id TEXT
);
CREATE INDEX idx_docs_agency ON documents(agency_id);
CREATE INDEX idx_docs_docket ON documents(docket_id);
CREATE INDEX idx_docs_date ON documents(posted_date);
CREATE INDEX idx_docs_year ON documents(posted_year);
CREATE INDEX idx_docs_type ON documents(document_type);
CREATE INDEX idx_docs_frnum ON documents(fr_doc_num);
CREATE INDEX idx_docs_comment_end ON documents(comment_end_date) WHERE comment_end_date IS NOT NULL AND withdrawn = 0;