documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "DOT-OST-1997-2971" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, last_modified, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- DOT 9
| 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-1997-2971-0009 | DOT | Antonov Design Bureau - Exemption - Wilmington, Ohio -Seattle/Boeing Field, Washington DOT-OST-1997-2971 | US-DOT/OST 98-4-4 - Order Confirming Exemptions | Other | Order | 1998-04-01T05:00:00Z | 1998 | 4 | 1998-04-01T05:00:00Z | 1998-04-24T03:59:59Z | 2024-11-07T18:32:06Z | 1 | 0 | 090000648031d468 | |
| DOT-OST-1997-2971-0008 | DOT | Antonov Design Bureau - Exemption - Wilmington, Ohio -Seattle/Boeing Field, Washington DOT-OST-1997-2971 | 98-2-18 - Order Confirming Exemptions | Other | Order | 1998-02-24T05:00:00Z | 1998 | 2 | 1998-02-24T05:00:00Z | 1998-03-19T04:59:59Z | 2024-11-07T18:32:06Z | 1 | 0 | 090000648031d467 | |
| DOT-OST-1997-2971-0007 | DOT | Antonov Design Bureau - Exemption - Wilmington, Ohio -Seattle/Boeing Field, Washington DOT-OST-1997-2971 | Notice of Action Taken re: Antonov Design Bureau | Notice | Notice | 1997-11-14T05:00:00Z | 1997 | 11 | 1997-11-14T05:00:00Z | 1997-11-15T04:59:59Z | 2024-11-07T18:38:22Z | 1 | 0 | 090000648031d466 | |
| DOT-OST-1997-2971-0006 | DOT | Antonov Design Bureau - Exemption - Wilmington, Ohio -Seattle/Boeing Field, Washington DOT-OST-1997-2971 | Antonov Design Bureau - Exemption/Amendment | Other | Application-Other | 1997-11-12T05:00:00Z | 1997 | 11 | 1997-11-12T05:00:00Z | 1997-11-13T04:59:59Z | 2024-11-07T18:38:22Z | 1 | 0 | 090000648031d465 | |
| DOT-OST-1997-2971-0005 | DOT | Antonov Design Bureau - Exemption - Wilmington, Ohio -Seattle/Boeing Field, Washington DOT-OST-1997-2971 | Antonov Design Bureau - Supplement to Application | Supporting & Related Material | Supplement | 1997-11-03T05:00:00Z | 1997 | 11 | 2024-11-07T18:38:21Z | 0 | 0 | 090000648031d464 | |||
| DOT-OST-1997-2971-0004 | DOT | Antonov Design Bureau - Exemption - Wilmington, Ohio -Seattle/Boeing Field, Washington DOT-OST-1997-2971 | Antonov Design Bureau - Amendment/Exemption | Other | Application-Other | 1997-10-29T05:00:00Z | 1997 | 10 | 1997-10-29T05:00:00Z | 1997-10-30T04:59:59Z | 2024-11-07T18:38:21Z | 1 | 0 | 090000648031d463 | |
| DOT-OST-1997-2971-0002 | DOT | Antonov Design Bureau - Exemption - Wilmington, Ohio -Seattle/Boeing Field, Washington DOT-OST-1997-2971 | Notice of Action Taken re: Antonov Design Bureau | Notice | Notice | 1997-10-07T04:00:00Z | 1997 | 10 | 1997-10-07T04:00:00Z | 1997-10-08T03:59:59Z | 2024-11-07T18:38:21Z | 1 | 0 | 090000648031d461 | |
| DOT-OST-1997-2971-0003 | DOT | Antonov Design Bureau - Exemption - Wilmington, Ohio -Seattle/Boeing Field, Washington DOT-OST-1997-2971 | General Electric Aircraft Engines - Letter in Support | Other | Letter(s) in Support | 1997-10-06T04:00:00Z | 1997 | 10 | 1997-10-06T04:00:00Z | 1997-10-07T03:59:59Z | 2024-11-07T18:38:21Z | 1 | 0 | 090000648031d462 | |
| DOT-OST-1997-2971-0001 | DOT | Antonov Design Bureau - Exemption - Wilmington, Ohio -Seattle/Boeing Field, Washington DOT-OST-1997-2971 | Antonov Design Bureau - Exemption - Wilmington, Ohio -Seattle/Boeing Field, Washington | Other | Application-Other | 1997-10-03T04:00:00Z | 1997 | 10 | 1997-10-03T04:00:00Z | 1997-10-04T03:59:59Z | 2024-11-07T18:38:21Z | 1 | 0 | 090000648031d460 |
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;