documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "DOT-OST-1996-1916" and posted_year = 1997 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, 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-1996-1916-0012 | DOT | CityLink Airlines, Inc. d/b/a CityLink - Certificate - Interstate Scheduled Air Transportation DOT-OST-1996-1916 | 97-5-5 Final Order | Other | Order | 1997-05-08T04:00:00Z | 1997 | 5 | 1997-05-08T04:00:00Z | 1997-05-09T03:59:59Z | 2024-11-12T02:41:58Z | 1 | 0 | 0900006480315722 | |
| DOT-OST-1996-1916-0011 | DOT | CityLink Airlines, Inc. d/b/a CityLink - Certificate - Interstate Scheduled Air Transportation DOT-OST-1996-1916 | 97-4-17 Order To Show Cause Proposing Issuance of Certificate Authority | Other | Show Cause Order | 1997-04-16T04:00:00Z | 1997 | 4 | 1997-04-16T04:00:00Z | 1997-04-17T03:59:59Z | 2024-11-12T02:41:58Z | 1 | 0 | 0900006480315721 | |
| DOT-OST-1996-1916-0009 | DOT | CityLink Airlines, Inc. d/b/a CityLink - Certificate - Interstate Scheduled Air Transportation DOT-OST-1996-1916 | CityLink Airlines, Inc. d/b/a CityLink - Motion for Confidential Treatment | Other | Motion | 1997-04-04T05:00:00Z | 1997 | 4 | 1997-04-04T05:00:00Z | 1997-04-05T04:59:59Z | 2024-11-12T02:43:32Z | 1 | 0 | 090000648031573b | |
| DOT-OST-1996-1916-0010 | DOT | CityLink Airlines, Inc. d/b/a CityLink - Certificate - Interstate Scheduled Air Transportation DOT-OST-1996-1916 | CityLink Airlines, Inc. d/b/a CityLink - Third Supplement | Supporting & Related Material | Supplement | 1997-04-04T05:00:00Z | 1997 | 4 | 2024-11-12T02:41:58Z | 0 | 0 | 0900006480315720 | |||
| DOT-OST-1996-1916-0008 | DOT | CityLink Airlines, Inc. d/b/a CityLink - Certificate - Interstate Scheduled Air Transportation DOT-OST-1996-1916 | Evaluation of Compliance Disposition Re CityLink Airlines, Inc. d/b/aCityLink | Other | Correspondence | 1997-03-07T05:00:00Z | 1997 | 3 | 1997-03-07T05:00:00Z | 1997-03-08T04:59:59Z | 2024-11-12T02:43:32Z | 1 | 0 | 090000648031573a | |
| DOT-OST-1996-1916-0007 | DOT | CityLink Airlines, Inc. d/b/a CityLink - Certificate - Interstate Scheduled Air Transportation DOT-OST-1996-1916 | Safety and Compliance Evaluation Re CityLink Airlines, Inc., d/b/a CityLink | Other | Correspondence | 1997-02-27T05:00:00Z | 1997 | 2 | 1997-02-27T05:00:00Z | 1997-02-28T04:59:59Z | 2024-11-12T02:43:31Z | 1 | 0 | 0900006480315739 | |
| DOT-OST-1996-1916-0006 | DOT | CityLink Airlines, Inc. d/b/a CityLink - Certificate - Interstate Scheduled Air Transportation DOT-OST-1996-1916 | CityLink Airlines, Inc. - Supplemental Exhibits/Information | Supporting & Related Material | Supplement | 1997-02-12T05:00:00Z | 1997 | 2 | 2024-11-12T02:43:31Z | 0 | 0 | 0900006480315738 | |||
| DOT-OST-1996-1916-0005 | DOT | CityLink Airlines, Inc. d/b/a CityLink - Certificate - Interstate Scheduled Air Transportation DOT-OST-1996-1916 | Safety and Compliance Evaluation (2) re CityLink Airlines, Inc. d/b/a CityLink | Other | Correspondence | 1997-01-23T05:00:00Z | 1997 | 1 | 1997-01-23T05:00:00Z | 1997-01-24T04:59:59Z | 2024-11-12T02:43:31Z | 1 | 0 | 0900006480315737 |
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;