documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "DOT-OST-1996-1960" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, last_modified, posted_date (date), comment_start_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-1960-0729 | DOT | Industry Letter re: Aviation Disaster Family Assistance Act of 1996 (Domestic) DOT-OST-1996-1960 | MN Airlines, LLC d/b/a Sun Country Airlines (Updated Family Assistance Plan) | Other | Correspondence | 2016-08-18T04:00:00Z | 2016 | 8 | 2016-08-18T04:00:00Z | 2024-11-12T06:13:03Z | 1 | 0 | 090000648217f53e | ||
| DOT-OST-1996-1960-0728 | DOT | Industry Letter re: Aviation Disaster Family Assistance Act of 1996 (Domestic) DOT-OST-1996-1960 | Horizon Air (Updated Family Assistance Plan) | Other | Correspondence | 2016-07-07T04:00:00Z | 2016 | 7 | 2016-07-07T04:00:00Z | 2024-11-12T06:08:46Z | 1 | 0 | 090000648208eae9 | ||
| DOT-OST-1996-1960-0727 | DOT | Industry Letter re: Aviation Disaster Family Assistance Act of 1996 (Domestic) DOT-OST-1996-1960 | Alaska Airlines (Updated Family Assistance Plan) | Other | Correspondence | 2016-07-07T04:00:00Z | 2016 | 7 | 2016-07-07T04:00:00Z | 2024-11-12T06:08:46Z | 1 | 0 | 090000648208eae3 | ||
| DOT-OST-1996-1960-0726 | DOT | Industry Letter re: Aviation Disaster Family Assistance Act of 1996 (Domestic) DOT-OST-1996-1960 | Virgin America (Family Assistance Plan) | Other | Letter(s) | 2016-06-10T04:00:00Z | 2016 | 6 | 2016-06-10T04:00:00Z | 2024-11-12T06:08:02Z | 1 | 0 | 09000064820233c4 | ||
| DOT-OST-1996-1960-0725 | DOT | Industry Letter re: Aviation Disaster Family Assistance Act of 1996 (Domestic) DOT-OST-1996-1960 | Hawaiian Airlines | Other | Letter(s) | 2016-05-12T04:00:00Z | 2016 | 5 | 2016-05-12T04:00:00Z | 2024-11-12T06:09:37Z | 1 | 0 | 0900006481fc56dc | ||
| DOT-OST-1996-1960-0724 | DOT | Industry Letter re: Aviation Disaster Family Assistance Act of 1996 (Domestic) DOT-OST-1996-1960 | Dominican Wings, S.A. | Other | Letter(s) | 2016-05-06T04:00:00Z | 2016 | 5 | 2016-05-06T04:00:00Z | 2024-11-11T21:28:16Z | 1 | 0 | 0900006481faedf1 | ||
| DOT-OST-1996-1960-0723 | DOT | Industry Letter re: Aviation Disaster Family Assistance Act of 1996 (Domestic) DOT-OST-1996-1960 | United Parcel Service Co. (Updated Family Assistance Plan) | Other | Letter(s) | 2016-05-05T04:00:00Z | 2016 | 5 | 2016-05-05T04:00:00Z | 2024-11-12T06:08:18Z | 1 | 0 | 0900006481fad19a | ||
| DOT-OST-1996-1960-0722 | DOT | Industry Letter re: Aviation Disaster Family Assistance Act of 1996 (Domestic) DOT-OST-1996-1960 | Titan Airways | Other | Letter(s) | 2016-05-04T04:00:00Z | 2016 | 5 | 2016-05-04T04:00:00Z | 2024-11-12T06:07:20Z | 1 | 0 | 0900006481fa8a00 | ||
| DOT-OST-1996-1960-0721 | DOT | Industry Letter re: Aviation Disaster Family Assistance Act of 1996 (Domestic) DOT-OST-1996-1960 | Champlain Enterprises, LLC, d/b/a CommutAir, d/b/a United Express | Other | Letter(s) | 2016-03-31T04:00:00Z | 2016 | 3 | 2016-03-31T04:00:00Z | 2024-11-12T05:59:47Z | 1 | 0 | 0900006481eebd72 | ||
| DOT-OST-1996-1960-0720 | DOT | Industry Letter re: Aviation Disaster Family Assistance Act of 1996 (Domestic) DOT-OST-1996-1960 | Champlain Enterprises, Inc. d/b/a CommutAir (Updated MOU) | Other | Letter(s) | 2016-02-04T05:00:00Z | 2016 | 2 | 2016-02-04T05:00:00Z | 2024-11-12T05:59:11Z | 1 | 0 | 0900006481e4ba87 |
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;