documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "DOT-OST-2012-0028" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, 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-2012-0028-0010 | DOT | None DOT-OST-2012-0028 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | Request for Comments | 2024-06-17T04:00:00Z | 2024 | 6 | 2024-06-17T04:00:00Z | 2024-07-18T03:59:59Z | 2024-11-12T22:38:12Z | 2024-13265 | 1 | 0 | 09000064865b9d33 |
| DOT-OST-2012-0028-0009 | DOT | None DOT-OST-2012-0028 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | Request for Comments | 2024-02-12T05:00:00Z | 2024 | 2 | 2024-02-12T05:00:00Z | 2024-04-13T03:59:59Z | 2024-02-13T12:49:50Z | 2024-02472 | 0 | 0 | 09000064864008f5 |
| DOT-OST-2012-0028-0008 | DOT | None DOT-OST-2012-0028 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | Request for Comments | 2016-06-17T04:00:00Z | 2016 | 6 | 2016-06-17T04:00:00Z | 2016-07-19T03:59:59Z | 2024-11-11T21:28:19Z | 2016-14361 | 1 | 0 | 090000648204ae75 |
| DOT-OST-2012-0028-0007 | DOT | None DOT-OST-2012-0028 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | Request for Comments | 2015-06-02T04:00:00Z | 2015 | 6 | 2015-06-02T04:00:00Z | 2015-08-04T03:59:59Z | 2024-11-11T20:56:32Z | 2015-13333 | 1 | 0 | 0900006481b15177 |
| DOT-OST-2012-0028-0005 | DOT | None DOT-OST-2012-0028 | Submission of U.S. Carrier Updated Tarmac Delay Contingency Plans to Department of Transportation for Approval (Federal Register Publication Original) | Notice | Notice of Intent | 2015-04-27T04:00:00Z | 2015 | 4 | 2015-04-27T04:00:00Z | 2015-04-27T13:23:14Z | 0 | 0 | 0900006481ab71b3 | ||
| DOT-OST-2012-0028-0006 | DOT | None DOT-OST-2012-0028 | U.S. Carrier Updated Tarmac Delay Contingency Plans | Notice | Notice of Change | 2015-04-27T04:00:00Z | 2015 | 4 | 2015-04-27T04:00:00Z | 2015-04-27T14:10:54Z | 2015-09716 | 0 | 0 | 0900006481abc4a0 | |
| DOT-OST-2012-0028-0002 | DOT | None DOT-OST-2012-0028 | Submission of U.S. Carrier and Airport Tarmac Delay Contingency Plans to Department of Transportation for Approval | Notice | Notice of Change | 2012-05-09T04:00:00Z | 2012 | 5 | 2012-05-09T04:00:00Z | 2013-04-26T01:05:31Z | 2012-11105 | 0 | 0 | 090000648100914c | |
| DOT-OST-2012-0028-0001 | DOT | None DOT-OST-2012-0028 | Submission of U.S. Carrier and Airport Tarmac Delay Contingency Plans | Notice | Notice of Change | 2012-03-01T05:00:00Z | 2012 | 3 | 2012-03-01T05:00:00Z | 2024-11-12T04:36:00Z | 2012-04963 | 1 | 0 | 0900006480fc9817 |
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;