documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "DOT-OST-2000-7149" and posted_year = 2003 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, comment_end_date, last_modified, 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-2000-7149-0031 | DOT | U.S.-Ghana Code Share Combination Service DOT-OST-2000-7149 | Notice of Action Taken re United Air Lines, Inc. | Notice | Notice | 2003-08-07T04:00:00Z | 2003 | 8 | 2003-08-07T04:00:00Z | 2003-08-08T03:59:59Z | 2008-01-12T00:32:25Z | 0 | 0 | 0900006480339210 | |
| DOT-OST-2000-7149-0032 | DOT | U.S.-Ghana Code Share Combination Service DOT-OST-2000-7149 | Notice of Action Taken re American Airlines, Inc. | Notice | Notice | 2003-08-06T04:00:00Z | 2003 | 8 | 2003-08-06T04:00:00Z | 2003-08-08T03:59:59Z | 2008-01-12T00:21:19Z | 0 | 0 | 0900006480339211 | |
| DOT-OST-2000-7149-0030 | DOT | U.S.-Ghana Code Share Combination Service DOT-OST-2000-7149 | Supplement to Applicaiton of American Airlines, Inc. for U.S.-Ghana Third-Country Codeshare Frequencies | Supporting & Related Material | Supplement | 2003-08-01T04:00:00Z | 2003 | 8 | 2008-01-08T19:10:17Z | 0 | 0 | 090000648033920f | |||
| DOT-OST-2000-7149-0029 | DOT | U.S.-Ghana Code Share Combination Service DOT-OST-2000-7149 | Motion for Leave to File and Amendment No. l to Application of American Airlines, Inc. for U.S.-Ghana Third-Country Codeshare Frequencies | Other | Motion | 2003-07-16T04:00:00Z | 2003 | 7 | 2003-07-16T04:00:00Z | 2003-07-18T03:59:59Z | 2008-01-12T00:28:47Z | 0 | 0 | 090000648033920d | |
| DOT-OST-2000-7149-0028-0001 | DOT | U.S.-Ghana Code Share Combination Service DOT-OST-2000-7149 | Consolidated Answer and Reply of United Air Lines, Inc. | Other | Consolidated Answer | 2003-07-14T04:00:00Z | 2003 | 7 | 2003-07-14T04:00:00Z | 2003-07-16T03:59:59Z | 2008-01-12T00:21:19Z | 0 | 0 | 090000648033920b | |
| DOT-OST-2000-7149-0028-0002 | DOT | U.S.-Ghana Code Share Combination Service DOT-OST-2000-7149 | Consolidated Answer and Reply of United Air Lines, Inc. | Other | Consolidated Answer | 2003-07-14T04:00:00Z | 2003 | 7 | 2003-07-14T04:00:00Z | 2003-07-16T03:59:59Z | 2008-01-12T00:26:58Z | 0 | 0 | 090000648033920c | |
| DOT-OST-2000-7149-0027 | DOT | U.S.-Ghana Code Share Combination Service DOT-OST-2000-7149 | Answer of American Airlines, Inc. to Application of United Air Lines, Inc. | Other | Answer | 2003-07-09T04:00:00Z | 2003 | 7 | 2003-07-09T04:00:00Z | 2003-07-10T03:59:59Z | 2008-01-12T00:19:10Z | 0 | 0 | 090000648033920a | |
| DOT-OST-2000-7149-0026 | DOT | U.S.-Ghana Code Share Combination Service DOT-OST-2000-7149 | Application of American Airlines, Inc. for U.S.-Ghana Third-Country Codeshare Frequencies | Other | Application-Other | 2003-07-09T04:00:00Z | 2003 | 7 | 2003-07-09T04:00:00Z | 2003-07-10T03:59:59Z | 2008-01-12T00:32:25Z | 0 | 0 | 0900006480339209 | |
| DOT-OST-2000-7149-0025-0001 | DOT | U.S.-Ghana Code Share Combination Service DOT-OST-2000-7149 | Application of United Air Lines, Inc. For Frequency Allocation | Other | Application-Other | 2003-06-26T04:00:00Z | 2003 | 6 | 2003-06-26T04:00:00Z | 2003-06-27T03:59:59Z | 2008-01-12T00:28:47Z | 0 | 0 | 0900006480339207 | |
| DOT-OST-2000-7149-0025-0002 | DOT | U.S.-Ghana Code Share Combination Service DOT-OST-2000-7149 | Application of United Air Lines, Inc. For Frequency Allocation | Other | Application-Other | 2003-06-26T04:00:00Z | 2003 | 6 | 2003-06-26T04:00:00Z | 2003-06-27T03:59:59Z | 2008-01-12T00:30:38Z | 0 | 0 | 0900006480339208 |
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;