documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
2 rows where docket_id = "FEMA-2018-0026" and document_type = "Proposed Rule" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2018-0026-0002 | FEMA | National Flood Insurance Program: Conforming Changes To Reflect the Biggert-Waters Flood Insurance Reform Act of 2012 (BW–12) and the Homeowners Flood Insurance Affordability Act of 2014 (HFIAA), and Additional Clarifications for Plain Language; Correction FEMA-2018-0026 | National Flood Insurance Program (NFIP): Conforming Changes To Reflect the Biggert-Waters Flood Insurance Reform Act of 2012 (BW–12) and the Homeowners Flood Insurance Affordability Act of 2014 (HFIAA), and Additional Clarifications for Plain Language; Correction | Proposed Rule | Correction | 2018-08-07T04:00:00Z | 2018 | 8 | 2018-08-07T14:44:22Z | 2018-16718 | 0 | 0 | 09000064835e0d9e | ||
| FEMA-2018-0026-0001 | FEMA | National Flood Insurance Program: Conforming Changes To Reflect the Biggert-Waters Flood Insurance Reform Act of 2012 (BW–12) and the Homeowners Flood Insurance Affordability Act of 2014 (HFIAA), and Additional Clarifications for Plain Language; Correction FEMA-2018-0026 | National Flood Insurance Program (NFIP): Conforming Changes To Reflect the Biggert- Waters Flood Insurance Reform Act of 2012 (BW–12) and the Homeowners Flood Insurance Affordability Act of 2014 (HFIAA), and Additional Clarifications for Plain Language | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2018-07-16T04:00:00Z | 2018 | 7 | 2018-07-16T04:00:00Z | 2018-09-15T03:59:59Z | 2018-09-14T01:19:43Z | 2018-13292 | 0 | 0 | 09000064835002d5 |
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;