documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FEMA-2005-0025" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, last_modified, posted_date (date), comment_start_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-2005-0025-0006 | FEMA | Mississippi; Amendment No. 5 to Notice of a Major Disaster Declaration FEMA-2005-0025 | Mississippi; Amendment No. 10 to Notice of a Major Disaster Declaration | Notice | 2005-11-29T18:13:49Z | 2005 | 11 | 2005-11-29T18:13:49Z | 2008-01-08T21:56:37Z | E5-06648 | 0 | 0 | 09000064800e630d | ||
| FEMA-2005-0025-0005 | FEMA | Mississippi; Amendment No. 5 to Notice of a Major Disaster Declaration FEMA-2005-0025 | Mississippi; Amendment No. 9 to Notice of a Major Disaster Declaration | Notice | 2005-11-04T18:12:49Z | 2005 | 11 | 2005-11-04T18:12:49Z | 2008-01-08T21:56:39Z | 05-22003 | 0 | 0 | 090000648009acda | ||
| FEMA-2005-0025-0004 | FEMA | Mississippi; Amendment No. 5 to Notice of a Major Disaster Declaration FEMA-2005-0025 | Mississippi; Amendment No. 8 to Notice of a Major Disaster Declaration | Notice | 2005-11-01T18:11:32Z | 2005 | 11 | 2005-11-01T18:11:32Z | 2008-01-08T21:56:37Z | 05-21706 | 0 | 0 | 090000648009916c | ||
| FEMA-2005-0025-0003 | FEMA | Mississippi; Amendment No. 5 to Notice of a Major Disaster Declaration FEMA-2005-0025 | Mississippi; Amendment No. 7 to Notice of a Major Disaster Declaration | Notice | 2005-11-01T18:09:59Z | 2005 | 11 | 2005-11-01T18:09:59Z | 2008-01-08T21:56:40Z | 05-21705 | 0 | 0 | 090000648009926e | ||
| FEMA-2005-0025-0002 | FEMA | Mississippi; Amendment No. 5 to Notice of a Major Disaster Declaration FEMA-2005-0025 | Mississippi; Amendment No. 6 to Notice of a Major Disaster Declaration | Notice | 2005-10-28T17:08:26Z | 2005 | 10 | 2005-10-28T17:08:26Z | 2008-01-08T21:56:40Z | 05-21502 | 0 | 0 | 0900006480097ce6 | ||
| FEMA-2005-0025-0001 | FEMA | Mississippi; Amendment No. 5 to Notice of a Major Disaster Declaration FEMA-2005-0025 | Mississippi; Amendment No. 5 to Notice of a Major Disaster Declaration | Notice | 2005-09-30T04:00:00Z | 2005 | 9 | 2011-09-29T18:52:30Z | 05-19633 | 0 | 0 | 090000648008d23c |
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;