documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FEMA-2015-0006" and document_type = "Notice" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-0357 | FEMA | Guidelines for Implementing Executive Order 11988, Floodplain Management FEMA-2015-0006 | Guidelines for Implementing Executive Order 11988, Floodplain Management, and Executive Order 13690, Establishing a Federal Flood Risk Management Standard and a Process for Further Soliciting and Considering Stakeholder Input | Notice | General Notice | 2015-10-22T04:00:00Z | 2015 | 10 | 2015-10-22T04:00:00Z | 2016-01-21T22:00:47Z | 2015-26839 | 0 | 0 | 0900006481ce0724 | |
| FEMA-2015-0006-0084 | FEMA | Guidelines for Implementing Executive Order 11988, Floodplain Management FEMA-2015-0006 | Notice of Public Meeting on the Proposed Revised Guidelines for Implementing Executive Order 11988, Floodplain Management, as Revised Through the Federal Flood Risk Management Standard | Notice | Public Meetings | 2015-04-09T04:00:00Z | 2015 | 4 | 2015-04-09T04:00:00Z | 2015-04-15T03:59:59Z | 2015-05-21T15:57:22Z | 2015-08102 | 0 | 0 | 0900006481a96d44 |
| FEMA-2015-0006-0076 | FEMA | Guidelines for Implementing Executive Order 11988, Floodplain Management FEMA-2015-0006 | Notice of Public Meeting on the Proposed Revised Guidelines for Implementing Floodplain Management, as Revised Through the Federal Flood Risk Management Standard | Notice | Public Meetings | 2015-04-06T04:00:00Z | 2015 | 4 | 2015-04-06T04:00:00Z | 2015-04-08T03:59:59Z | 2015-05-21T15:56:32Z | 2015-07807 | 0 | 0 | 0900006481a8dfb7 |
| FEMA-2015-0006-0057 | FEMA | Guidelines for Implementing Executive Order 11988, Floodplain Management FEMA-2015-0006 | Notice To Extend the Comment Period for the Proposed Revised Guidelines for Implementing Executive Order 11988, Floodplain Management, as Revised Through the Federal Flood Risk Management Standard | Notice | General Notice | 2015-03-26T04:00:00Z | 2015 | 3 | 2015-03-26T04:00:00Z | 2015-05-07T03:59:59Z | 2015-05-21T15:55:02Z | 2015-06879 | 0 | 0 | 0900006481a68bfb |
| FEMA-2015-0006-0052 | FEMA | Guidelines for Implementing Executive Order 11988, Floodplain Management FEMA-2015-0006 | Notice of Public Meeting on the Proposed Revised Guidelines for Implementing Executive Order 11988, Floodplain Management, As Revised Through the Federal Flood Risk Management Standard | Notice | Public Meetings | 2015-03-23T04:00:00Z | 2015 | 3 | 2015-03-23T04:00:00Z | 2015-03-28T03:59:59Z | 2015-05-21T15:54:34Z | 2015-06551 | 0 | 0 | 0900006481a58a13 |
| FEMA-2015-0006-0030 | FEMA | Guidelines for Implementing Executive Order 11988, Floodplain Management FEMA-2015-0006 | Notice of Public Meetings on the Proposed Revised Guidelines for Implementing Executive Order 11988, Floodplain Management, As Revised Through the Federal Flood Risk Management Standard | Notice | Public Meetings | 2015-03-16T04:00:00Z | 2015 | 3 | 2015-03-16T04:00:00Z | 2015-03-26T03:59:59Z | 2015-05-21T15:53:25Z | 2015-05832 | 0 | 0 | 0900006481a4626b |
| FEMA-2015-0006-0017 | FEMA | Guidelines for Implementing Executive Order 11988, Floodplain Management FEMA-2015-0006 | Notice of Public Meetings on the Proposed Revised Guidelines for Implementing Executive Order 11988, Floodplain Management, as Revised Through the Federal Flood Risk Management Standard | Notice | Public Meetings | 2015-02-25T05:00:00Z | 2015 | 2 | 2015-02-25T05:00:00Z | 2015-05-21T15:53:54Z | 2015-03840 | 0 | 0 | 0900006481a16313 | |
| FEMA-2015-0006-0001 | FEMA | Guidelines for Implementing Executive Order 11988, Floodplain Management FEMA-2015-0006 | Guidelines for Implementing Executive Order 11988, Floodplain Management, as Revised | Notice | General Notice | 2015-02-05T05:00:00Z | 2015 | 2 | 2015-02-05T05:00:00Z | 2015-05-07T03:59:59Z | 2015-06-06T01:30:44Z | 2015-02284 | 0 | 0 | 09000064819f5433 |
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;