documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "DOT", document_type = "Proposed Rule" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, subtype, posted_month, open_for_comment, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| DOT-OST-2009-0092-0472 | DOT | None DOT-OST-2009-0092 | Availability of Final Report on Regulatory Review under Executive Order 13783 | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2017-12-22T05:00:00Z | 2017 | 12 | 2017-12-22T05:00:00Z | 2017-12-22T18:56:27Z | 2017-27654 | 0 | 0 | 0900006482d56cb6 | |
| DOT-OST-2017-0007-0069 | DOT | None DOT-OST-2017-0007 | Transparency of Airline Ancillary Service Fees | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2017-12-14T05:00:00Z | 2017 | 12 | 2017-12-14T05:00:00Z | 2024-11-07T01:13:49Z | 2017-26707 | 1 | 0 | 0900006482d08dcc | |
| DOT-OST-2017-0069-1442 | DOT | None DOT-OST-2017-0069 | Regulatory Review | Proposed Rule | Request for Comment | 2017-11-03T04:00:00Z | 2017 | 11 | 2017-11-03T04:00:00Z | 2017-12-28T02:01:18Z | 2017-23964 | 0 | 0 | 0900006482c3e559 | |
| DOT-OST-2015-0013-0183 | DOT | None DOT-OST-2015-0013 | Geographic-Based Hiring Preferences in Administering Federal Awards; Withdrawal | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2017-10-06T04:00:00Z | 2017 | 10 | 2017-10-06T04:00:00Z | 2024-11-07T01:19:01Z | 2017-21574 | 1 | 0 | 0900006482ba50b7 | |
| DOT-OST-2017-0069-0001 | DOT | None DOT-OST-2017-0069 | Regulatory Review | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2017-10-02T04:00:00Z | 2017 | 10 | 2017-10-02T04:00:00Z | 2017-12-02T04:59:59Z | 2019-11-04T08:36:57Z | 2017-21101 | 0 | 0 | 0900006482b8fe58 |
| DOT-OST-2017-0007-0065 | DOT | None DOT-OST-2017-0007 | Transparency of Airline Ancillary Service Fees | Proposed Rule | Extension of Comment Period | 2017-03-14T04:00:00Z | 2017 | 3 | 2017-03-14T04:00:00Z | 2017-12-14T14:01:38Z | 2017-04674 | 0 | 0 | 0900006482505f69 | |
| DOT-OST-2016-0189-0001 | DOT | None DOT-OST-2016-0189 | Procedures for Transportation Workplace Drug and Alcohol Testing Programs: Addition of Certain Schedule II Drugs to the Drug-Testing Panel and Certain Minor Amendments | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2017-01-23T05:00:00Z | 2017 | 1 | 2017-01-23T05:00:00Z | 2017-03-25T03:59:59Z | 2017-03-25T13:00:52Z | 2017-01131 | 0 | 0 | 090000648248914b |
| DOT-OST-2017-0007-0005 | DOT | None DOT-OST-2017-0007 | Transparency of Airline Ancillary Service Fees | Proposed Rule | Supplemental Notice of Proposed Rulemaking (SNPRM) | 2017-01-19T05:00:00Z | 2017 | 1 | 2017-01-19T05:00:00Z | 2017-03-21T03:59:59Z | 2024-11-11T21:34:31Z | 2017-00904 | 1 | 0 | 0900006482485783 |
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;