documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "DOT", document_type = "Rule" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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-2016-0189-0072 | DOT | None DOT-OST-2016-0189 | Procedures for Transportation Workplace Drug and Alcohol Testing Programs: Addition of Certain Schedule II Drugs to the Department of Transportation's Drug-Testing Panel and Certain Minor Amendments | Rule | Final Rule | 2017-11-13T05:00:00Z | 2017 | 11 | 2017-11-13T05:00:00Z | 2024-11-07T01:10:29Z | 2017-24397 | 1 | 0 | 0900006482c6a2db | |
| DOT-OST-2009-0092-0465 | DOT | None DOT-OST-2009-0092 | Updates to Comply with the FOIA Improvement Act of 2016 and other Technical Amendments: Correction | Rule | Final Rule | 2017-06-05T04:00:00Z | 2017 | 6 | 2017-06-05T04:00:00Z | 2017-08-28T13:02:43Z | 2017-11579 | 0 | 0 | 090000648268c7dd | |
| DOT-OST-2009-0092-0462 | DOT | None DOT-OST-2009-0092 | Freedom of Information Act Regulations | Rule | Final Rule | 2017-05-05T04:00:00Z | 2017 | 5 | 2017-05-05T04:00:00Z | 2017-08-28T13:02:13Z | 2017-08925 | 0 | 0 | 0900006482593916 | |
| DOT-OST-2012-0123-0004 | DOT | None DOT-OST-2012-0123 | Organizations and Delegations of Powers and Duties | Rule | Final Rule | 2017-04-26T04:00:00Z | 2017 | 4 | 2017-04-26T04:00:00Z | 2024-11-07T00:59:02Z | 2017-08416 | 1 | 0 | 0900006482579c8f | |
| DOT-OST-2014-0056-0805 | DOT | None DOT-OST-2014-0056 | Enhancing Airline Passenger Protections III: Extension of Compliance Date for Provision Concerning Baggage Handling Statistics Report | Rule | Final Rule | 2017-03-22T04:00:00Z | 2017 | 3 | 2017-03-22T04:00:00Z | 2024-11-07T00:56:58Z | 2017-05113 | 1 | 0 | 0900006482518aa1 | |
| DOT-OST-2009-0092-0458 | DOT | None DOT-OST-2009-0092 | Federal Policy for Protection of Human Subjects | Rule | Final Rule | 2017-01-19T05:00:00Z | 2017 | 1 | 2017-01-19T05:00:00Z | 2017-08-28T13:01:22Z | 2017-01058 | 0 | 0 | 09000064824855cf |
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;