documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "DOT", document_type = "Proposed Rule" and posted_year = 2014 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-2014-0056-0693 | DOT | None DOT-OST-2014-0056 | Transparency of Airline Ancillary Fees and Other Consumer Protection Issues | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2014-09-25T04:00:00Z | 2014 | 9 | 2014-09-25T04:00:00Z | 2014-09-30T03:59:59Z | 2024-11-11T20:53:56Z | 2014-22902 | 1 | 0 | 090000648188f9b2 |
| DOT-OST-2014-0056-0607 | DOT | None DOT-OST-2014-0056 | Transparency of Airline Ancillary Fees and Other Consumer Protection Issues | Proposed Rule | Extension of Comment Period | 2014-08-06T04:00:00Z | 2014 | 8 | 2014-08-06T04:00:00Z | 2014-09-23T03:59:59Z | 2024-11-12T05:27:42Z | 2014-18525 | 1 | 0 | 0900006481807338 |
| DOT-OST-2014-0056-0606 | DOT | None DOT-OST-2014-0056 | Extension of Comment Period on Proposed Rule (Original Copy) | Proposed Rule | Extension of Comment Period | 2014-07-31T04:00:00Z | 2014 | 7 | 2014-07-31T04:00:00Z | 2024-11-12T05:27:59Z | 1 | 0 | 09000064817f1c15 | ||
| DOT-OST-2014-0056-0079 | DOT | None DOT-OST-2014-0056 | Transparency of Airline Ancillary Fees and Other Consumer Protection Issues | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2014-05-23T04:00:00Z | 2014 | 5 | 2014-05-23T04:00:00Z | 2014-08-22T03:59:59Z | 2024-11-12T05:25:39Z | 2014-11993 | 1 | 0 | 090000648170f101 |
| DOT-OST-2014-0061-0001 | DOT | None DOT-OST-2014-0061 | Essential Air Service Proposed Enforcement Policy | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2014-05-01T04:00:00Z | 2014 | 5 | 2014-05-01T04:00:00Z | 2014-07-01T03:59:59Z | 2024-11-11T20:50:31Z | 2014-09830 | 1 | 0 | 09000064816da572 |
| DOT-OST-2014-0024-0001 | DOT | None DOT-OST-2014-0024 | Review of Existing Regulations | Proposed Rule | Request for Comment | 2014-02-27T05:00:00Z | 2014 | 2 | 2014-02-27T05:00:00Z | 2014-04-01T03:59:59Z | 2024-11-12T05:25:12Z | 2014-04008 | 1 | 0 | 09000064815d8532 |
| DOT-OST-2014-0002-0018 | DOT | None DOT-OST-2014-0002 | Use of Mobile Wireless Devices for Voice Calls on Aircraft | Proposed Rule | Advance Notice of Proposed Rulemaking (ANPRM) | 2014-02-24T05:00:00Z | 2014 | 2 | 2014-02-24T05:00:00Z | 2014-03-27T03:59:59Z | 2014-04-13T02:57:52Z | 2014-03684 | 0 | 0 | 09000064815a67fd |
| DOT-OST-2014-0002-0001 | DOT | None DOT-OST-2014-0002 | Use of Mobile Wireless Devices for Voice Calls on Aircraft (Advance Notice of Proposed Rulemaking) | Proposed Rule | Advance Notice of Proposed Rulemaking (ANPRM) | 2014-02-14T05:00:00Z | 2014 | 2 | 2014-02-14T05:00:00Z | 2016-12-10T21:18:24Z | 0 | 0 | 0900006481568d38 | ||
| DOT-OST-1999-5129-0023 | DOT | Semiannual Regulatory Agenda DOT-OST-1999-5129 | Department Regulatory Agenda; Semiannual Summary | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2014-01-07T05:00:00Z | 2014 | 1 | 2014-01-07T05:00:00Z | 2014-01-08T21:51:30Z | 2013-29637 | 0 | 0 | 09000064814f11c5 |
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;