documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "FEMA", document_type = "Rule" and posted_year = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_month, last_modified, 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-2005-0058-0003 | FEMA | Suspension of Community Eligibility FEMA-2005-0058 | Suspension of Community Eligibility | Rule | 2005-12-01T14:09:36Z | 2005 | 12 | 2005-12-01T14:09:36Z | 2008-01-08T21:56:35Z | 05-23528 | 0 | 0 | 09000064800e926c | ||
| FEMA-2005-0058-0002 | FEMA | Suspension of Community Eligibility FEMA-2005-0058 | Suspension of Community Eligibility | Rule | 2005-11-01T14:06:58Z | 2005 | 11 | 2005-11-01T14:06:58Z | 2008-01-08T21:56:36Z | 05-21702 | 0 | 0 | 09000064800992c5 | ||
| FEMA-2005-0059-0001 | FEMA | List of Communities Eligible for the Sale of Flood Insurance FEMA-2005-0059 | List of Communities Eligible for the Sale of Flood Insurance | Rule | 2005-10-24T13:22:40Z | 2005 | 10 | 2005-10-24T13:22:40Z | 2008-01-08T21:56:41Z | 05-21139 | 0 | 0 | 090000648009630b | ||
| FEMA-2005-0058-0001 | FEMA | Suspension of Community Eligibility FEMA-2005-0058 | Suspension of Community Eligibility | Rule | 2005-10-24T13:05:08Z | 2005 | 10 | 2005-10-24T13:05:08Z | 2008-01-08T21:56:40Z | 05-21138 | 0 | 0 | 0900006480096321 | ||
| FEMA-2005-0051-0001 | FEMA | Special Community Disaster Loans Program FEMA-2005-0051 | Special Community Disaster Loans Program | Rule | 2005-10-18T12:52:31Z | 2005 | 10 | 2005-10-18T12:52:31Z | 2005-12-20T04:59:59Z | 2011-06-11T17:22:22Z | 05-20920 | 0 | 0 | 09000064800940ec | |
| FEMA-2005-0036-0001 | FEMA | Changes in Flood Elevation Determinations FEMA-2005-0036 | Changes in Flood Elevation Determinations | Rule | 2005-10-04T18:34:44Z | 2005 | 10 | 2005-10-04T18:34:44Z | 2011-10-04T22:10:46Z | 05-19817 | 0 | 0 | 090000648008e717 | ||
| FEMA-2005-0036-0002 | FEMA | Changes in Flood Elevation Determinations FEMA-2005-0036 | Changes in Flood Elevation Determinations | Rule | 2005-10-04T18:33:10Z | 2005 | 10 | 2005-10-04T18:33:10Z | 2008-01-08T21:56:35Z | 05-19816 | 0 | 0 | 090000648008e740 | ||
| FEMA-2005-0043-0003 | FEMA | Proposed Flood Elevation Determinations FEMA-2005-0043 | Final Flood Elevation Determinations | Rule | 2005-10-04T04:00:00Z | 2005 | 10 | 2011-10-04T22:21:41Z | 05-19815 | 0 | 0 | 090000648008e7e9 | |||
| FEMA-2005-0031-0001 | FEMA | Suspension of Community Eligibility FEMA-2005-0031 | Suspension of Community Eligibility | Rule | 2005-09-30T04:00:00Z | 2005 | 9 | 2011-09-29T18:54:58Z | 05-19637 | 0 | 0 | 090000648008d1f0 |
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;