documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "DOT-OST-1996-1065" and posted_year = 1996 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, comment_end_date, 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-1996-1065-0009 | DOT | American Airlines, Inc. - Allocation of Seven U.S.-Brazil Frequencies - New York - Rio de Janeiro DOT-OST-1996-1065 | 96-3-47 Order Allocating Frequencies | Other | Order | 1996-03-27T05:00:00Z | 1996 | 3 | 1996-03-27T05:00:00Z | 1996-03-28T04:59:59Z | 2024-11-12T02:30:04Z | 1 | 0 | 090000648030f11c | |
| DOT-OST-1996-1065-0008 | DOT | American Airlines, Inc. - Allocation of Seven U.S.-Brazil Frequencies - New York - Rio de Janeiro DOT-OST-1996-1065 | Continental Airlines, Inc. - Motion for Leave to Late-File an Unauthorized Document/Surreply | Other | Motion/Surreply | 1996-03-19T05:00:00Z | 1996 | 3 | 1996-03-19T05:00:00Z | 1996-03-20T04:59:59Z | 2024-11-12T02:30:04Z | 1 | 0 | 090000648030f11b | |
| DOT-OST-1996-1065-0007 | DOT | American Airlines, Inc. - Allocation of Seven U.S.-Brazil Frequencies - New York - Rio de Janeiro DOT-OST-1996-1065 | United Air Lines, Inc. - Reply/Motion for Leave to File | Other | Motion/Reply | 1996-03-04T05:00:00Z | 1996 | 3 | 1996-03-04T05:00:00Z | 1996-03-05T04:59:59Z | 2024-11-12T02:30:04Z | 1 | 0 | 090000648030f11a | |
| DOT-OST-1996-1065-0006 | DOT | American Airlines, Inc. - Allocation of Seven U.S.-Brazil Frequencies - New York - Rio de Janeiro DOT-OST-1996-1065 | Ex Parte Letter to Mr. Charles Hunnicutt | Other | Correspondence | 1996-02-29T05:00:00Z | 1996 | 2 | 1996-02-29T05:00:00Z | 1996-03-01T04:59:59Z | 2024-11-12T02:30:04Z | 1 | 0 | 090000648030f119 | |
| DOT-OST-1996-1065-0005 | DOT | American Airlines, Inc. - Allocation of Seven U.S.-Brazil Frequencies - New York - Rio de Janeiro DOT-OST-1996-1065 | American Airlines, Inc. - Motion for leave to File/Reply | Other | Motion/Reply | 1996-02-27T05:00:00Z | 1996 | 2 | 1996-02-27T05:00:00Z | 1996-02-28T04:59:59Z | 2024-11-12T02:30:04Z | 1 | 0 | 090000648030f118 | |
| DOT-OST-1996-1065-0003 | DOT | American Airlines, Inc. - Allocation of Seven U.S.-Brazil Frequencies - New York - Rio de Janeiro DOT-OST-1996-1065 | Continental Airlines, Inc. - Motion to Consolidate | Other | Motion | 1996-02-26T05:00:00Z | 1996 | 2 | 1996-02-26T05:00:00Z | 1996-02-27T04:59:59Z | 2024-11-12T02:29:47Z | 1 | 0 | 090000648030f112 | |
| DOT-OST-1996-1065-0004 | DOT | American Airlines, Inc. - Allocation of Seven U.S.-Brazil Frequencies - New York - Rio de Janeiro DOT-OST-1996-1065 | Continental Airlines, Inc. - Answer | Other | Answer | 1996-02-26T05:00:00Z | 1996 | 2 | 1996-02-26T05:00:00Z | 1996-02-27T04:59:59Z | 2024-11-12T02:30:04Z | 1 | 0 | 090000648030f117 | |
| DOT-OST-1996-1065-0002 | DOT | American Airlines, Inc. - Allocation of Seven U.S.-Brazil Frequencies - New York - Rio de Janeiro DOT-OST-1996-1065 | Continental Airlines, Inc. - Answer | Other | Answer | 1996-02-15T05:00:00Z | 1996 | 2 | 1996-02-15T05:00:00Z | 1996-02-16T04:59:59Z | 2024-11-12T02:29:26Z | 1 | 0 | 090000648030f106 | |
| DOT-OST-1996-1065-0001 | DOT | American Airlines, Inc. - Allocation of Seven U.S.-Brazil Frequencies - New York - Rio de Janeiro DOT-OST-1996-1065 | American Airlines, Inc. - Allocation of Seven U.S.-Brazil Frequencies - New York - Rio de Janeiro | Other | Application-Other | 1996-02-09T05:00:00Z | 1996 | 2 | 1996-02-09T05:00:00Z | 1996-02-10T04:59:59Z | 2024-11-12T02:29:00Z | 1 | 0 | 090000648030f0fa |
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;