documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "DOT-OST-1998-3361" and posted_year = 1998 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, comment_end_date, 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-1998-3361-0010 | DOT | Airbus Transport International snc - Exemption - France-United States DOT-OST-1998-3361 | Notice of Action Taken re: Airbus Transport International s.n.c. (ATI) | Notice | Notice | 1998-07-13T04:00:00Z | 1998 | 7 | 1998-07-13T04:00:00Z | 1998-07-14T03:59:59Z | 2024-11-07T02:02:36Z | 1 | 0 | 09000064802a51cf | |
| DOT-OST-1998-3361-0009 | DOT | Airbus Transport International snc - Exemption - France-United States DOT-OST-1998-3361 | Continental Micronesia, Inc. - Withdrawal of Objection | Other | Withdrawal | 1998-06-26T04:00:00Z | 1998 | 6 | 1998-06-26T04:00:00Z | 1998-06-27T03:59:59Z | 2024-11-07T02:03:07Z | 1 | 0 | 09000064802a51e1 | |
| DOT-OST-1998-3361-0007 | DOT | Airbus Transport International snc - Exemption - France-United States DOT-OST-1998-3361 | Continental Micronesia, Inc. - Supplement to Answer | Supporting & Related Material | Supplement | 1998-02-17T05:00:00Z | 1998 | 2 | 2024-11-07T21:48:24Z | 0 | 0 | 09000064803824bd | |||
| DOT-OST-1998-3361-0008 | DOT | Airbus Transport International snc - Exemption - France-United States DOT-OST-1998-3361 | Continental Micronesia, Inc. - Supplement/Motion for Leave to File | Supporting & Related Material | Supplement | 1998-02-17T05:00:00Z | 1998 | 2 | 2024-11-07T02:03:07Z | 0 | 0 | 09000064802a51e0 | |||
| DOT-OST-1998-3361-0005 | DOT | Airbus Transport International snc - Exemption - France-United States DOT-OST-1998-3361 | Airbus Transport International S.N.C. - Consolidated Reply | Other | Consolidated Reply | 1998-02-05T05:00:00Z | 1998 | 2 | 1998-02-05T05:00:00Z | 1998-02-06T04:59:59Z | 2024-11-07T02:03:06Z | 1 | 0 | 09000064802a51de | |
| DOT-OST-1998-3361-0006 | DOT | Airbus Transport International snc - Exemption - France-United States DOT-OST-1998-3361 | Notice of Action Taken re: Airbus Transport International s.n.c.(ATI) | Notice | Notice | 1998-02-05T05:00:00Z | 1998 | 2 | 1998-02-05T05:00:00Z | 1998-02-06T04:59:59Z | 2024-11-07T02:03:06Z | 1 | 0 | 09000064802a51df | |
| DOT-OST-1998-3361-0004 | DOT | Airbus Transport International snc - Exemption - France-United States DOT-OST-1998-3361 | Northwest Airlines, Inc. - Answer | Other | Answer | 1998-02-04T05:00:00Z | 1998 | 2 | 1998-02-04T05:00:00Z | 1998-02-05T04:59:59Z | 2024-11-07T02:03:06Z | 1 | 0 | 09000064802a51dd | |
| DOT-OST-1998-3361-0003 | DOT | Airbus Transport International snc - Exemption - France-United States DOT-OST-1998-3361 | Continental Micronesia, Inc. - Answer | Other | Answer | 1998-02-04T05:00:00Z | 1998 | 2 | 1998-02-04T05:00:00Z | 1998-02-05T04:59:59Z | 2024-11-07T02:03:06Z | 1 | 0 | 09000064802a51dc | |
| DOT-OST-1998-3361-0002 | DOT | Airbus Transport International snc - Exemption - France-United States DOT-OST-1998-3361 | Notice Shortening Answer Period | Notice | Notice | 1998-02-03T05:00:00Z | 1998 | 2 | 1998-02-03T05:00:00Z | 1998-02-06T04:59:59Z | 2024-11-07T02:03:06Z | 1 | 0 | 09000064802a51db | |
| DOT-OST-1998-3361-0001 | DOT | Airbus Transport International snc - Exemption - France-United States DOT-OST-1998-3361 | Airbus Transport International S.N.C. - Exemption - Charter - France-United States | Other | Application-Other | 1998-01-22T05:00:00Z | 1998 | 1 | 1998-01-22T05:00:00Z | 1998-01-23T04:59:59Z | 2024-11-07T02:02:36Z | 1 | 0 | 09000064802a51ce |
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;