documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FEMA-2005-0058" 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-0058-0006 | FEMA | Suspension of Community Eligibility FEMA-2005-0058 | Suspension of Community Eligibility | Rule | 2006-04-07T18:36:30Z | 2006 | 4 | 2006-04-07T18:36:30Z | 2008-01-08T21:56:38Z | 06-03189 | 0 | 0 | 0900006480155239 | ||
| FEMA-2005-0058-0005 | FEMA | Suspension of Community Eligibility FEMA-2005-0058 | Suspension of Community Eligibility | Rule | 2006-03-17T14:15:57Z | 2006 | 3 | 2006-03-17T14:15:57Z | 2008-01-08T21:56:33Z | 06-02592 | 0 | 0 | 0900006480147fb2 | ||
| FEMA-2005-0058-0004 | FEMA | Suspension of Community Eligibility FEMA-2005-0058 | Suspension of Community Eligibility | Rule | 2006-03-17T14:14:05Z | 2006 | 3 | 2006-03-17T14:14:05Z | 2008-01-08T21:56:35Z | 06-02593 | 0 | 0 | 0900006480147f80 | ||
| 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-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 |
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;