documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "DOT-OST-2014-0056" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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-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-2014-0056-0803 | DOT | None DOT-OST-2014-0056 | Enhancing Airline Passenger Protections III: Extension of Compliance Date for Certain Provisions (Original) | Other | Agency Response | 2017-02-16T05:00:00Z | 2017 | 2 | 2017-02-16T05:00:00Z | 2017-02-16T18:04:25Z | 0 | 0 | 09000064824c7ea1 | ||
| DOT-OST-2014-0056-0802 | DOT | None DOT-OST-2014-0056 | Letter to A4A Regarding the Rulemaking Request | Other | Agency Response | 2017-02-15T05:00:00Z | 2017 | 2 | 2017-02-15T05:00:00Z | 2024-11-11T21:33:26Z | 1 | 0 | 09000064824c32ee | ||
| DOT-OST-2014-0056-0801 | DOT | None DOT-OST-2014-0056 | Letter to Delta Regarding the Rulemaking Request | Other | Agency Response | 2017-02-15T05:00:00Z | 2017 | 2 | 2017-02-15T05:00:00Z | 2024-11-11T21:35:05Z | 1 | 0 | 09000064824c308f | ||
| DOT-OST-2014-0056-0800 | DOT | None DOT-OST-2014-0056 | Delta Air Lines, Inc. - Letter on Regulatory Process | Other | Correspondence | 2017-02-13T05:00:00Z | 2017 | 2 | 2017-02-13T05:00:00Z | 2024-11-11T21:34:30Z | 1 | 0 | 09000064824be1bf | ||
| DOT-OST-2014-0056-0799 | DOT | None DOT-OST-2014-0056 | Airlines for America - Applicability of the January 20 Reince Priebus Memorandum - Regulatory Freeze Pending Review | Other | Correspondence | 2017-02-01T05:00:00Z | 2017 | 2 | 2017-02-01T05:00:00Z | 2024-11-11T21:33:09Z | 1 | 0 | 09000064824a44f4 | ||
| DOT-OST-2014-0056-0798 | DOT | None DOT-OST-2014-0056 | Ex Parte Correspondence to Terry Dale (United States Tour Operators Association) | Other | Correspondence | 2017-01-06T05:00:00Z | 2017 | 1 | 2017-01-06T05:00:00Z | 2024-11-07T23:52:45Z | 1 | 0 | 0900006482450191 |
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;