documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FEMA-2008-0010" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, 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-2008-0010-0063 | FEMA | Board of Visitors for the National Fire Academy FEMA-2008-0010 | Board of Visitors for the National Fire Academy | Notice | Advisory Committee | 2012-11-20T05:00:00Z | 2012 | 11 | 2012-11-20T05:00:00Z | 2012-12-01T04:59:59Z | 2012-11-20T17:02:26Z | 2012-28221 | 0 | 0 | 090000648116ea02 |
| FEMA-2008-0010-0062 | FEMA | Board of Visitors for the National Fire Academy FEMA-2008-0010 | Cancellation; Federal Advisory Committee Meeting: Board of Visitors for the National Fire Academy | Notice | General Notice | 2012-10-11T04:00:00Z | 2012 | 10 | 2012-10-11T17:08:05Z | 2012-25095 | 0 | 0 | 090000648113c2e3 | ||
| FEMA-2008-0010-0059 | FEMA | Board of Visitors for the National Fire Academy FEMA-2008-0010 | Board of Visitors for the National Fire Academy | Notice | General Notice | 2012-09-17T04:00:00Z | 2012 | 9 | 2012-09-17T04:00:00Z | 2012-09-28T03:59:59Z | 2012-09-28T02:01:11Z | 2012-22808 | 0 | 0 | 0900006481119601 |
| FEMA-2008-0010-0058 | FEMA | Board of Visitors for the National Fire Academy FEMA-2008-0010 | Board of Visitors for the National Fire Academy | Notice | Meeting | 2012-07-12T04:00:00Z | 2012 | 7 | 2012-07-12T04:00:00Z | 2012-07-21T03:59:59Z | 2012-07-12T15:15:34Z | 2012-16972 | 0 | 0 | 090000648108905d |
| FEMA-2008-0010-0019 | FEMA | Board of Visitors for the National Fire Academy FEMA-2008-0010 | Board of Visitors for the National Fire Academy | Notice | Meeting | 2012-04-10T04:00:00Z | 2012 | 4 | 2012-04-10T04:00:00Z | 2012-04-21T03:59:59Z | 2012-04-21T12:01:09Z | 2012-08622 | 0 | 0 | 0900006480fec3c5 |
| FEMA-2008-0010-0018 | FEMA | Board of Visitors for the National Fire Academy FEMA-2008-0010 | Board of Visitors for the National Fire Academy | Notice | Meeting | 2012-02-06T05:00:00Z | 2012 | 2 | 2012-02-06T05:00:00Z | 2012-02-17T04:59:59Z | 2012-02-06T16:37:47Z | 2012-02466 | 0 | 0 | 0900006480fae422 |
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;