documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "DOT-OST-2004-19919" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, open_for_comment, 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-2004-19919-0027 | DOT | None DOT-OST-2004-19919 | 2008-4-42 Order Revoking Certificate | Other | Order | 2008-04-29T04:00:00Z | 2008 | 4 | 2008-04-29T04:00:00Z | 2024-11-12T04:14:16Z | 1 | 0 | 090000648053ac97 | ||
| DOT-OST-2004-19919-0026 | DOT | None DOT-OST-2004-19919 | Motion for Leave to File Answer and Answer of Captain Direck Hecking in Opposition to the Application, as Amended and Motion to Revoke/Deny Operating Authority | Other | Motion/Answer | 2008-03-13T04:00:00Z | 2008 | 3 | 2008-03-13T04:00:00Z | 2024-11-07T21:51:03Z | 1 | 0 | 09000064803f43ab | ||
| DOT-OST-2004-19919-0025 | DOT | None DOT-OST-2004-19919 | Answer of Air Line Pilots Association to Objections and Comments of Boston-Maine Airways Corp. in Response to Show Cause Order 2008-2-3 | Other | Answer | 2008-03-11T04:00:00Z | 2008 | 3 | 2008-03-11T04:00:00Z | 2024-11-12T04:10:19Z | 1 | 0 | 09000064803f1b03 | ||
| DOT-OST-2004-19919-0024 | DOT | None DOT-OST-2004-19919 | Objections and Comments of Boston-Maine Airways Corp., In Response To Show Cause Order 20008-2-3 | Other | Objection(s) | 2008-03-04T05:00:00Z | 2008 | 3 | 2008-03-04T05:00:00Z | 2024-11-12T04:10:24Z | 1 | 0 | 09000064803e6992 | ||
| DOT-OST-2004-19919-0023 | DOT | None DOT-OST-2004-19919 | Captain Dirck Hecking | Other | Correspondence | 2008-02-20T05:00:00Z | 2008 | 2 | 2008-02-20T05:00:00Z | 2024-11-07T01:41:08Z | 1 | 0 | 09000064803b93f5 | ||
| DOT-OST-2004-19919-0022 | DOT | None DOT-OST-2004-19919 | 2008-2-24 Order Denying Extension of Procedural Dates | Other | Order | 2008-02-19T05:00:00Z | 2008 | 2 | 2008-02-19T05:00:00Z | 2024-11-07T21:50:04Z | 1 | 0 | 09000064803b7f51 | ||
| DOT-OST-2004-19919-0021 | DOT | None DOT-OST-2004-19919 | Motion of Boston-Maine Airways Corp. for Postponement of Procedural Dates | Other | Motion | 2008-02-08T05:00:00Z | 2008 | 2 | 2008-02-08T05:00:00Z | 2024-11-08T03:47:57Z | 1 | 0 | 09000064803ab136 | ||
| DOT-OST-2004-19919-0020 | DOT | None DOT-OST-2004-19919 | Order 2008-2-3 Show Cause | Other | Order | 2008-02-01T05:00:00Z | 2008 | 2 | 2008-02-01T05:00:00Z | 2013-07-27T20:33:16Z | 0 | 0 | 09000064803a6929 |
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;