documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "FEMA" and document_type = "Other" 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-2019-0018-0150 | FEMA | Hazard Mitigation Assistance: Building Resilient Infrastructure and Communities FEMA-2019-0018 | BRIC Policy FP-104-008-05 | Other | 2022-02-25T05:00:00Z | 2022 | 2 | 2022-02-25T05:00:00Z | 2022-02-25T17:06:50Z | 0 | 0 | 0900006484f7ad79 | |||
| FEMA-2019-0018-0002 | FEMA | Hazard Mitigation Assistance: Building Resilient Infrastructure and Communities FEMA-2019-0018 | FEMA Proposed Policy_Hazard Mitigation Assistance Building Resilient Infrastructure and Communities (BRIC) | Other | 2020-04-10T04:00:00Z | 2020 | 4 | 2020-04-10T13:53:24Z | 0 | 0 | 0900006484478d2a | ||||
| FEMA-2015-0020-0002 | FEMA | Recovery Policy: Stafford Act Section 705, Disaster Grant Closeout Procedures FEMA-2015-0020 | Stafford Act Section 705, Disaster Grant Closeout Procedures | Other | 2015-09-24T04:00:00Z | 2015 | 9 | 2015-09-24T04:00:00Z | 2015-11-03T04:59:59Z | 2015-11-03T02:30:30Z | 0 | 0 | 0900006481c9406c | ||
| FEMA-2015-0020-0001 | FEMA | Recovery Policy: Stafford Act Section 705, Disaster Grant Closeout Procedures FEMA-2015-0020 | Stafford Act Section 705, Disaster Grant Closeout Procedures | Other | 2015-09-24T00:00:00Z | 2015 | 9 | 2016-10-31T15:09:20Z | 0 | 1 | 0900006481c93e22 | ||||
| FEMA-2008-0011-0001 | FEMA | Significant Guidance Documents FEMA-2008-0011 | Significant Guidance Documents | Other | 2008-07-24T04:00:00Z | 2008 | 7 | 2008-07-24T04:00:00Z | 2020-07-25T03:59:59Z | 2019-04-20T01:01:30Z | 0 | 0 | 090000648069392e | ||
| FEMA-2008-0009-0001 | FEMA | National Disaster Housing Strategy FEMA-2008-0009 | National Disaster Housing Strategy | Other | 2008-07-23T04:00:00Z | 2008 | 7 | 2008-07-24T17:46:16Z | 0 | 0 | 090000648068d09a | ||||
| FEMA-2008-0008-0001 | FEMA | National Incident Management Systems – FEMA 501 FEMA-2008-0008 | NIMS Stakeholders: National Comment Period for the Revised National Incident Management System Document | Other | 2008-05-02T04:00:00Z | 2008 | 5 | 2008-05-02T04:00:00Z | 2008-06-03T03:59:59Z | 2008-05-22T12:36:03Z | 0 | 0 | 0900006480541f5a |
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;