documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "DOT-OST-1999-6249" and posted_year = 2000 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-1999-6249-0013 | DOT | Atlantic Coast Jet, Inc. - Certificate - Scheduled Interstate Air Transportation DOT-OST-1999-6249 | 2000-8-9 Order Confirming Oral Actions and Issuing Effective Certificate | Other | Order | 2000-08-07T04:00:00Z | 2000 | 8 | 2000-08-07T04:00:00Z | 2000-08-08T03:59:59Z | 2008-01-12T00:19:19Z | 0 | 0 | 09000064803317b5 | |
| DOT-OST-1999-6249-0012 | DOT | Atlantic Coast Jet, Inc. - Certificate - Scheduled Interstate Air Transportation DOT-OST-1999-6249 | Atlantic Coast Jet, Inc. and Delta Air Lines, Inc. - Waiver from 14 C.F.R. Section 201.5 | Other | Application-SubPartB | 2000-05-16T04:00:00Z | 2000 | 5 | 2000-05-16T04:00:00Z | 2000-05-18T03:59:59Z | 2008-01-12T00:28:53Z | 0 | 0 | 09000064803317b4 | |
| DOT-OST-1999-6249-0011 | DOT | Atlantic Coast Jet, Inc. - Certificate - Scheduled Interstate Air Transportation DOT-OST-1999-6249 | 2000-2-17 Final Order Making Fitness Determination and Issuing Certificate | Other | Order | 2000-02-14T05:00:00Z | 2000 | 2 | 2000-02-14T05:00:00Z | 2000-02-16T04:59:59Z | 2026-03-04T01:38:18Z | 1 | 0 | 09000064803317b3 | |
| DOT-OST-1999-6249-0010 | DOT | Atlantic Coast Jet, Inc. - Certificate - Scheduled Interstate Air Transportation DOT-OST-1999-6249 | U.S. DOT/OST - Notice of Order to Show Cause | Notice | Notice | 2000-02-03T05:00:00Z | 2000 | 2 | 2000-02-03T05:00:00Z | 2000-02-04T04:59:59Z | 2008-01-12T00:32:32Z | 0 | 0 | 09000064803317b2 | |
| DOT-OST-1999-6249-0009 | DOT | Atlantic Coast Jet, Inc. - Certificate - Scheduled Interstate Air Transportation DOT-OST-1999-6249 | 2000-1-25 Order to Show Cause Proposing Issuance of Certificate Authority | Other | Show Cause Order | 2000-01-28T05:00:00Z | 2000 | 1 | 2000-01-28T05:00:00Z | 2000-02-19T04:59:59Z | 2008-01-12T00:21:26Z | 0 | 0 | 09000064803317ca | |
| DOT-OST-1999-6249-0008 | DOT | Atlantic Coast Jet, Inc. - Certificate - Scheduled Interstate Air Transportation DOT-OST-1999-6249 | Atlantic Coast Jet, Inc. - Additional Information | Other | Additional Information | 2000-01-18T05:00:00Z | 2000 | 1 | 2000-01-18T05:00:00Z | 2000-01-19T04:59:59Z | 2008-01-12T00:21:26Z | 0 | 0 | 09000064803317c9 | |
| DOT-OST-1999-6249-0007 | DOT | Atlantic Coast Jet, Inc. - Certificate - Scheduled Interstate Air Transportation DOT-OST-1999-6249 | Atlantic Coast Jet, Inc. - Additional Information | Other | Additional Information | 2000-01-04T05:00:00Z | 2000 | 1 | 2000-01-04T05:00:00Z | 2000-01-05T04:59:59Z | 2008-01-12T00:19:19Z | 0 | 0 | 09000064803317c8 |
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;