documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "DOT-OST-1999-5161" and posted_year = 2000 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-1999-5161-0012 | DOT | American Airlines, Inc. and American Eagle Airlines - Amended Statement of Authorization DOT-OST-1999-5161 | U. S. DOT/OST - Approval of the Application | Other | Decision | 2000-09-18T04:00:00Z | 2000 | 9 | 2000-09-18T04:00:00Z | 2000-09-19T03:59:59Z | 2024-11-08T03:54:31Z | 1 | 0 | 09000064802a771f | |
| DOT-OST-1999-5161-0011 | DOT | American Airlines, Inc. and American Eagle Airlines - Amended Statement of Authorization DOT-OST-1999-5161 | American Airlines, Inc. and American Eagle Airlines, Inc. - Amended Statement of Authorization | Other | Amendment | 2000-09-06T04:00:00Z | 2000 | 9 | 2000-09-06T04:00:00Z | 2000-09-07T03:59:59Z | 2024-11-08T03:54:31Z | 1 | 0 | 09000064802a771e | |
| DOT-OST-1999-5161-0010 | DOT | American Airlines, Inc. and American Eagle Airlines - Amended Statement of Authorization DOT-OST-1999-5161 | Notice of Action Taken re: American Airlines, Inc. and American Eagle Airlines, Inc. | Notice | Notice | 2000-08-28T04:00:00Z | 2000 | 8 | 2000-08-28T04:00:00Z | 2000-08-29T03:59:59Z | 2024-11-08T03:54:31Z | 1 | 0 | 09000064802a771d | |
| DOT-OST-1999-5161-0009 | DOT | American Airlines, Inc. and American Eagle Airlines - Amended Statement of Authorization DOT-OST-1999-5161 | American Airlines, Inc. and American Eagle Airlines, Inc. - Correction | Other | Correction(s) | 2000-08-23T04:00:00Z | 2000 | 8 | 2000-08-23T04:00:00Z | 2000-08-24T03:59:59Z | 2024-11-08T03:55:02Z | 1 | 0 | 09000064802a773a | |
| DOT-OST-1999-5161-0008 | DOT | American Airlines, Inc. and American Eagle Airlines - Amended Statement of Authorization DOT-OST-1999-5161 | American Airlines, Inc. - Amended Statement of Authorization | Other | Application-Other | 2000-08-10T04:00:00Z | 2000 | 8 | 2000-08-10T04:00:00Z | 2000-08-11T03:59:59Z | 2024-11-08T03:55:02Z | 1 | 0 | 09000064802a7739 |
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;