documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "DOT-OST-2015-0262" 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-2015-0262-0012 | DOT | None DOT-OST-2015-0262 | Notice of Action Taken re: Royal Air Maroc | Other | Decision | 2025-04-07T04:00:00Z | 2025 | 4 | 2025-04-07T04:00:00Z | 2025-04-08T12:32:13Z | 1 | 0 | 0900006486a762ad | ||
| DOT-OST-2015-0262-0011 | DOT | None DOT-OST-2015-0262 | Application of Royal Air Maroc for Renewal of Exemption Authorities | Other | Application-Other | 2025-02-10T05:00:00Z | 2025 | 2 | 2025-02-10T05:00:00Z | 2025-02-11T13:46:19Z | 1 | 0 | 0900006486940432 | ||
| DOT-OST-2015-0262-0010 | DOT | None DOT-OST-2015-0262 | Notice of Action Taken re: Royal Air Maroc | Other | Decision | 2023-02-21T05:00:00Z | 2023 | 2 | 2023-02-21T05:00:00Z | 2025-02-16T03:37:34Z | 1 | 0 | 09000064856e1eec | ||
| DOT-OST-2015-0262-0009 | DOT | None DOT-OST-2015-0262 | Application of Royal Air Maroc for Renewal of Exemption Authority | Other | Application-Other | 2022-03-17T04:00:00Z | 2022 | 3 | 2022-03-17T04:00:00Z | 2024-11-07T00:38:00Z | 1 | 0 | 0900006484fceb5c | ||
| DOT-OST-2015-0262-0008 | DOT | None DOT-OST-2015-0262 | Notice of Action Taken re: Royal Air Maroc | Other | Decision | 2020-04-09T04:00:00Z | 2020 | 4 | 2020-04-09T04:00:00Z | 2024-11-06T23:33:54Z | 1 | 0 | 090000648449812e | ||
| DOT-OST-2015-0262-0007 | DOT | None DOT-OST-2015-0262 | Application of Royal Air Maroc for Renewal of Exemption Authority | Other | Application-Other | 2020-02-07T05:00:00Z | 2020 | 2 | 2020-02-07T05:00:00Z | 2024-11-12T23:17:39Z | 1 | 0 | 0900006484338825 | ||
| DOT-OST-2015-0262-0006 | DOT | None DOT-OST-2015-0262 | Notice of Action Taken re: Royal Air Maroc | Other | Decision | 2018-02-26T05:00:00Z | 2018 | 2 | 2018-02-26T05:00:00Z | 2024-11-07T01:22:37Z | 1 | 0 | 0900006482f64cdf | ||
| DOT-OST-2015-0262-0005 | DOT | None DOT-OST-2015-0262 | Application of Royal Air Maroc for Renewal of Exemption Authority | Other | Application-Other | 2017-12-01T05:00:00Z | 2017 | 12 | 2017-12-01T05:00:00Z | 2024-11-07T01:12:24Z | 1 | 0 | 0900006482ccc2d9 | ||
| DOT-OST-2015-0262-0003 | DOT | None DOT-OST-2015-0262 | Royal Air Maroc (Polling Letter) | Other | Letter(s) | 2015-12-18T05:00:00Z | 2015 | 12 | 2015-12-18T05:00:00Z | 2024-11-11T21:15:40Z | 1 | 0 | 0900006481dba009 | ||
| DOT-OST-2015-0262-0004 | DOT | None DOT-OST-2015-0262 | Notice of Action Taken re: Royal Air Maroc | Other | Decision | 2015-12-18T05:00:00Z | 2015 | 12 | 2015-12-18T05:00:00Z | 2024-11-07T23:35:23Z | 1 | 0 | 0900006481db866c | ||
| DOT-OST-2015-0262-0001 | DOT | None DOT-OST-2015-0262 | Application of Royal Air Maroc for Exemption Authority | Other | Application-Other | 2015-12-15T05:00:00Z | 2015 | 12 | 2015-12-15T05:00:00Z | 2024-11-07T23:33:22Z | 1 | 0 | 0900006481d9facf |
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;