documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "DOT-OST-2020-0201" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, 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-2020-0201-0010 | DOT | None DOT-OST-2020-0201 | Notice of Action Taken re: Eastern Airlines, LLC | Other | Decision | 2020-12-28T05:00:00Z | 2020 | 12 | 2020-12-28T05:00:00Z | 2024-11-12T23:26:51Z | 1 | 0 | 09000064849cdc58 | ||
| DOT-OST-2020-0201-0009 | DOT | None DOT-OST-2020-0201 | Approval of Motion for Extension of Start-Up Date | Other | Decision | 2020-12-22T05:00:00Z | 2020 | 12 | 2020-12-22T05:00:00Z | 2024-11-12T23:27:05Z | 1 | 0 | 09000064849b7da7 | ||
| DOT-OST-2020-0201-0008 | DOT | None DOT-OST-2020-0201 | Motion to Amend Application for Allocation of Frequencies | Other | Motion | 2020-12-14T05:00:00Z | 2020 | 12 | 2020-12-14T05:00:00Z | 2024-11-06T23:43:21Z | 1 | 0 | 090000648499ccf6 | ||
| DOT-OST-2020-0201-0007 | DOT | None DOT-OST-2020-0201 | Eastern Airlines, LLC Motion to Amend Application for Allocation of Frequencies | Other | Motion | 2020-12-09T05:00:00Z | 2020 | 12 | 2020-12-09T05:00:00Z | 2024-11-06T23:41:44Z | 1 | 0 | 090000648498e072 | ||
| DOT-OST-2020-0201-0006 | DOT | None DOT-OST-2020-0201 | Corrected: Eastern Airlines, LLC Motion for Extension of Start-Up Date | Other | Correction(s) | 2020-12-07T05:00:00Z | 2020 | 12 | 2020-12-07T05:00:00Z | 2024-11-06T23:43:18Z | 1 | 0 | 090000648498b0b1 | ||
| DOT-OST-2020-0201-0005 | DOT | None DOT-OST-2020-0201 | Eastern Airlines, LLC Motion for Extension of Start-Up Date | Other | Motion | 2020-12-07T05:00:00Z | 2020 | 12 | 2020-12-07T05:00:00Z | 2024-11-06T23:41:57Z | 1 | 0 | 090000648498ac32 | ||
| DOT-OST-2020-0201-0004 | DOT | None DOT-OST-2020-0201 | Notice of Action Taken re: Eastern Airlines, LLC | Other | Decision | 2020-11-24T05:00:00Z | 2020 | 11 | 2020-11-24T05:00:00Z | 2024-11-06T23:40:57Z | 1 | 0 | 090000648497354e | ||
| DOT-OST-2020-0201-0003 | DOT | None DOT-OST-2020-0201 | Notice of Action Taken re: Eastern Airlines, LLC | Other | Decision | 2020-10-20T04:00:00Z | 2020 | 10 | 2020-10-20T04:00:00Z | 2024-11-12T23:25:52Z | 1 | 0 | 090000648491bed8 | ||
| DOT-OST-2020-0201-0002 | DOT | None DOT-OST-2020-0201 | Eastern Airlines, LLC (Polling Letter) | Other | Letter(s) | 2020-10-19T04:00:00Z | 2020 | 10 | 2020-10-19T04:00:00Z | 2024-11-06T23:40:30Z | 1 | 0 | 0900006484917fda | ||
| DOT-OST-2020-0201-0001 | DOT | None DOT-OST-2020-0201 | Eastern Airlines, LLC Application for an Allocation of Frequencies | Other | Application-Other | 2020-10-06T04:00:00Z | 2020 | 10 | 2020-10-06T04:00:00Z | 2024-11-12T23:25:36Z | 1 | 0 | 09000064848d7183 |
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;