documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "DOT", document_type = "Rule" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, subtype, posted_month, open_for_comment, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| DOT-OST-2014-0056-0793 | DOT | None DOT-OST-2014-0056 | Enhancing Airline Passenger Protections III | Rule | Final Rule | 2016-11-03T04:00:00Z | 2016 | 11 | 2016-11-03T04:00:00Z | 2016-11-03T12:58:34Z | 2016-26178 | 0 | 0 | 090000648236d910 | |
| DOT-OST-2013-0142-0001 | DOT | None DOT-OST-2013-0142 | Update of Department of Transportation Regulations: Termination of the Department of Transportation Board of Contract Appeals | Rule | Final Rule | 2016-10-17T04:00:00Z | 2016 | 10 | 2016-10-17T04:00:00Z | 2024-11-12T06:15:44Z | 2016-24052 | 1 | 0 | 0900006482303085 | |
| DOT-OST-2009-0092-0448 | DOT | None DOT-OST-2009-0092 | Revisions to Civil Penalty Amounts | Rule | Interim Final Rule | 2016-08-10T04:00:00Z | 2016 | 8 | 2016-08-10T04:00:00Z | 2017-08-28T13:05:07Z | 2016-19003 | 0 | 0 | 0900006482164984 | |
| DOT-OST-2009-0092-0447 | DOT | None DOT-OST-2009-0092 | Technical Amendment to Revise the Definition of Service Agent | Rule | Final Rule | 2016-08-08T04:00:00Z | 2016 | 8 | 2016-08-08T04:00:00Z | 2017-08-28T13:05:15Z | 2016-18328 | 0 | 0 | 090000648215c499 | |
| DOT-OST-2009-0092-0445 | DOT | None DOT-OST-2009-0092 | Classified Information: Classification/Declassification/Access; Authority to Classify Information | Rule | Final Rule | 2016-07-15T04:00:00Z | 2016 | 7 | 2016-07-15T04:00:00Z | 2017-08-28T13:05:30Z | 2016-16565 | 0 | 0 | 09000064820b3fc2 | |
| DOT-OST-2012-0123-0003 | DOT | None DOT-OST-2012-0123 | Organization and Delegation of Powers and Duties | Rule | Final Rule | 2016-04-05T04:00:00Z | 2016 | 4 | 2016-04-05T04:00:00Z | 2024-11-07T23:42:19Z | 2016-04230 | 1 | 0 | 0900006481f274c1 | |
| DOT-OST-2011-0044-1077 | DOT | None DOT-OST-2011-0044 | Use of Electronic Cigarettes on Aircraft | Rule | Final Rule | 2016-03-04T05:00:00Z | 2016 | 3 | 2016-03-04T05:00:00Z | 2016-03-04T14:11:00Z | 2016-04799 | 0 | 0 | 0900006481ea0a3e |
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;