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 = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, 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-0649 | DOT | Industry Letter re: Aviation Disaster Family Assistance Act of 1996 (Domestic) DOT-OST-1996-1960 | Jet-A, LLC | Other | Correspondence | 2010-12-10T05:00:00Z | 2010 | 12 | 2010-12-10T05:00:00Z | 2024-11-12T04:58:39Z | 1 | 0 | 0900006480bb255e | ||
| DOT-OST-1996-1960-0648 | DOT | Industry Letter re: Aviation Disaster Family Assistance Act of 1996 (Domestic) DOT-OST-1996-1960 | Hyannis Air Service d/b/a Cape Air | Other | Other | 2010-11-18T05:00:00Z | 2010 | 11 | 2010-11-18T05:00:00Z | 2024-11-12T04:55:46Z | 1 | 0 | 0900006480b943b4 | ||
| DOT-OST-1996-1960-0647 | DOT | Industry Letter re: Aviation Disaster Family Assistance Act of 1996 (Domestic) DOT-OST-1996-1960 | Wings Airways | Other | Correspondence | 2010-11-16T05:00:00Z | 2010 | 11 | 2024-11-12T04:54:06Z | 1 | 0 | 0900006480b87dde | |||
| DOT-OST-1996-1960-0646 | DOT | Industry Letter re: Aviation Disaster Family Assistance Act of 1996 (Domestic) DOT-OST-1996-1960 | National Air Cargo Group, Inc. d/b/a National Airlines (“National Airlines”) | Other | Correspondence | 2010-09-08T04:00:00Z | 2010 | 9 | 2010-09-08T04:00:00Z | 2024-11-07T22:24:37Z | 1 | 0 | 0900006480b43eed | ||
| DOT-OST-1996-1960-0645 | DOT | Industry Letter re: Aviation Disaster Family Assistance Act of 1996 (Domestic) DOT-OST-1996-1960 | Frontier Airlines | Other | Correspondence | 2010-06-02T04:00:00Z | 2010 | 6 | 2010-06-02T04:00:00Z | 2024-11-07T22:17:08Z | 1 | 0 | 0900006480af5b8b | ||
| DOT-OST-1996-1960-0644 | DOT | Industry Letter re: Aviation Disaster Family Assistance Act of 1996 (Domestic) DOT-OST-1996-1960 | Falcon Air Express, Inc. | Other | Correspondence | 2010-05-11T04:00:00Z | 2010 | 5 | 2010-05-11T04:00:00Z | 2024-11-12T04:52:51Z | 1 | 0 | 0900006480ae9e79 | ||
| DOT-OST-1996-1960-0643 | DOT | Industry Letter re: Aviation Disaster Family Assistance Act of 1996 (Domestic) DOT-OST-1996-1960 | Atlas Air, Inc. | Other | Correspondence | 2010-04-29T04:00:00Z | 2010 | 4 | 2010-04-29T04:00:00Z | 2024-11-07T22:14:14Z | 1 | 0 | 0900006480ae25dc | ||
| DOT-OST-1996-1960-0642 | DOT | Industry Letter re: Aviation Disaster Family Assistance Act of 1996 (Domestic) DOT-OST-1996-1960 | Dynamic Airways, LLC | Other | Other | 2010-03-03T05:00:00Z | 2010 | 3 | 2010-03-03T05:00:00Z | 2024-11-12T04:48:15Z | 1 | 0 | 0900006480ab1d5a | ||
| DOT-OST-1996-1960-0641 | DOT | Industry Letter re: Aviation Disaster Family Assistance Act of 1996 (Domestic) DOT-OST-1996-1960 | Frontier Airlines | Other | Other | 2010-03-02T05:00:00Z | 2010 | 3 | 2010-03-02T05:00:00Z | 2024-11-12T04:47:42Z | 1 | 0 | 0900006480ab10b7 | ||
| DOT-OST-1996-1960-0640 | DOT | Industry Letter re: Aviation Disaster Family Assistance Act of 1996 (Domestic) DOT-OST-1996-1960 | KaiserAir, Inc. | Other | Correspondence | 2010-01-21T05:00:00Z | 2010 | 1 | 2010-01-21T05:00:00Z | 2024-11-07T22:13:16Z | 1 | 0 | 0900006480a800c6 |
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;