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 = 2000 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, last_modified, 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-2000-8207-0007 | DOT | Delta Air Lines, Inc. and Czech Airlines - Statement of Authorization - United States-Czech Republic Codesharing DOT-OST-2000-8207 | Delta Air Lines Submits a Review Conclusion Statement Regarding CSA Czech Airlines | Other | Statement | 2000-12-22T05:00:00Z | 2000 | 12 | 2000-12-22T05:00:00Z | 2000-12-23T04:59:59Z | 2024-11-07T17:14:29Z | 1 | 0 | 09000064802c7843 | |
| DOT-OST-2000-8207-0006 | DOT | Delta Air Lines, Inc. and Czech Airlines - Statement of Authorization - United States-Czech Republic Codesharing DOT-OST-2000-8207 | Motion for Leave to File and Response of United Air Lines, Inc. | Other | Motion | 2000-11-22T05:00:00Z | 2000 | 11 | 2000-11-22T05:00:00Z | 2000-11-23T04:59:59Z | 2024-11-07T17:14:29Z | 1 | 0 | 09000064802c7842 | |
| DOT-OST-2000-8207-0005 | DOT | Delta Air Lines, Inc. and Czech Airlines - Statement of Authorization - United States-Czech Republic Codesharing DOT-OST-2000-8207 | Motion for Leave to File and Consolidated Reply of Delta Air Lines and Czech Airlines | Other | Motion | 2000-11-13T05:00:00Z | 2000 | 11 | 2000-11-13T05:00:00Z | 2000-11-14T04:59:59Z | 2024-11-07T17:14:28Z | 1 | 0 | 09000064802c7841 | |
| DOT-OST-2000-8207-0004 | DOT | Delta Air Lines, Inc. and Czech Airlines - Statement of Authorization - United States-Czech Republic Codesharing DOT-OST-2000-8207 | Answer of Continental Airlines, Inc. | Other | Answer | 2000-11-08T05:00:00Z | 2000 | 11 | 2000-11-08T05:00:00Z | 2000-11-09T04:59:59Z | 2024-11-07T17:14:28Z | 1 | 0 | 09000064802c7840 | |
| DOT-OST-2000-8207-0003 | DOT | Delta Air Lines, Inc. and Czech Airlines - Statement of Authorization - United States-Czech Republic Codesharing DOT-OST-2000-8207 | Answer of United Air Lines, Inc. | Other | Answer | 2000-11-07T05:00:00Z | 2000 | 11 | 2000-11-07T05:00:00Z | 2000-11-08T04:59:59Z | 2024-11-07T17:14:28Z | 1 | 0 | 09000064802c783f | |
| DOT-OST-2000-8207-0002 | DOT | Delta Air Lines, Inc. and Czech Airlines - Statement of Authorization - United States-Czech Republic Codesharing DOT-OST-2000-8207 | Delta Air Lines, Inc. - Supplement to the Delta/CSA Codesharing Agreement | Supporting & Related Material | Supplement | 2000-11-01T05:00:00Z | 2000 | 11 | 2024-11-07T17:13:37Z | 0 | 0 | 09000064802c781b | |||
| DOT-OST-2000-8207-0001 | DOT | Delta Air Lines, Inc. and Czech Airlines - Statement of Authorization - United States-Czech Republic Codesharing DOT-OST-2000-8207 | Delta Air Lines, Inc. and Czech Airlines - Statement of Authorization - United States-Czech Republic Codesharing | Other | Application-Other | 2000-10-27T04:00:00Z | 2000 | 10 | 2000-10-27T04:00:00Z | 2000-10-28T03:59:59Z | 2024-11-07T17:13:09Z | 1 | 0 | 09000064802c77fd |
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;