documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "DOT-OST-2000-8207" and posted_year = 2001 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, 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-8207-0014 | DOT | Delta Air Lines, Inc. and Czech Airlines - Statement of Authorization - United States-Czech Republic Codesharing DOT-OST-2000-8207 | Notice of Delta and CSA Re: Additional Codeshare Points | Notice | Notice | 2001-07-03T04:00:00Z | 2001 | 7 | 2001-07-03T04:00:00Z | 2001-07-04T03:59:59Z | 2024-11-07T17:13:10Z | 1 | 0 | 09000064802c7802 | |
| DOT-OST-2000-8207-0013 | DOT | Delta Air Lines, Inc. and Czech Airlines - Statement of Authorization - United States-Czech Republic Codesharing DOT-OST-2000-8207 | Approval of Application | Other | Decision | 2001-03-16T05:00:00Z | 2001 | 3 | 2001-03-16T05:00:00Z | 2001-03-17T04:59:59Z | 2024-11-07T17:13:10Z | 1 | 0 | 09000064802c7801 | |
| DOT-OST-2000-8207-0012 | DOT | Delta Air Lines, Inc. and Czech Airlines - Statement of Authorization - United States-Czech Republic Codesharing DOT-OST-2000-8207 | Letter of Delta Air Lines, Inc. and Czech Airlines Regarding JFK-Salt Lake City Codesharing | Other | Letter(s) | 2001-03-06T05:00:00Z | 2001 | 3 | 2001-03-06T05:00:00Z | 2001-03-07T04:59:59Z | 2024-11-07T17:13:10Z | 1 | 0 | 09000064802c7800 | |
| DOT-OST-2000-8207-0011 | DOT | Delta Air Lines, Inc. and Czech Airlines - Statement of Authorization - United States-Czech Republic Codesharing DOT-OST-2000-8207 | Joint Application of Delta Air Lines, Inc., Czech Airlines, Southeast Airlines, Inc., and Comair, Inc., for an Amended Statement of Authorization | Other | Application-Other | 2001-03-05T05:00:00Z | 2001 | 3 | 2001-03-05T05:00:00Z | 2001-03-06T04:59:59Z | 2024-11-07T17:13:10Z | 1 | 0 | 09000064802c77ff | |
| DOT-OST-2000-8207-0010 | DOT | Delta Air Lines, Inc. and Czech Airlines - Statement of Authorization - United States-Czech Republic Codesharing DOT-OST-2000-8207 | Letter Regarding Additional Codeshare Points | Other | Letter(s) | 2001-03-02T05:00:00Z | 2001 | 3 | 2001-03-02T05:00:00Z | 2001-03-03T04:59:59Z | 2024-11-07T17:13:10Z | 1 | 0 | 09000064802c77fe | |
| DOT-OST-2000-8207-0009 | DOT | Delta Air Lines, Inc. and Czech Airlines - Statement of Authorization - United States-Czech Republic Codesharing DOT-OST-2000-8207 | Approval of Application | Other | Decision | 2001-02-27T05:00:00Z | 2001 | 2 | 2001-02-27T05:00:00Z | 2001-02-28T04:59:59Z | 2024-11-07T17:14:29Z | 1 | 0 | 09000064802c7845 | |
| DOT-OST-2000-8207-0008 | DOT | Delta Air Lines, Inc. and Czech Airlines - Statement of Authorization - United States-Czech Republic Codesharing DOT-OST-2000-8207 | Supplement No. 1 of Delta Air Lines and Contingent Request for A U.S.-France Designation | Other | Application-Other | 2001-01-05T05:00:00Z | 2001 | 1 | 2001-01-05T05:00:00Z | 2001-01-18T04:59:59Z | 2024-11-07T17:14:29Z | 1 | 0 | 09000064802c7844 |
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;