documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "DOT-OST-1997-2842" and posted_year = 2005 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, 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-1997-2842-0049 | DOT | 97-8-14 Order Authorizing Subsidy for Increased Program-Wide - re: EAS at Massena, New York DOT-OST-1997-2842 | 2005-5-8 Order Selecting Carrier and Setting Subsidy Rate | Other | Order | 2005-05-18T04:00:00Z | 2005 | 5 | 2005-05-18T04:00:00Z | 2005-05-19T03:59:59Z | 2024-11-11T21:49:06Z | 1 | 0 | 09000064802a4390 | |
| DOT-OST-1997-2842-0047 | DOT | 97-8-14 Order Authorizing Subsidy for Increased Program-Wide - re: EAS at Massena, New York DOT-OST-1997-2842 | County of Jefferson | Other | Correspondence | 2005-04-20T04:00:00Z | 2005 | 4 | 2005-04-20T04:00:00Z | 2005-04-21T03:59:59Z | 2013-09-24T13:07:06Z | 0 | 0 | 09000064802a438c | |
| DOT-OST-1997-2842-0048-0002 | DOT | 97-8-14 Order Authorizing Subsidy for Increased Program-Wide - re: EAS at Massena, New York DOT-OST-1997-2842 | Jefferson County NY, Ogdensburg, NY, Bridge and Port Authority and Town of Massena, NY | Other | Correspondence | 2005-04-20T04:00:00Z | 2005 | 4 | 2005-04-20T04:00:00Z | 2005-04-21T03:59:59Z | 2013-09-24T12:57:05Z | 0 | 0 | 09000064802a438e | |
| DOT-OST-1997-2842-0048-0003 | DOT | 97-8-14 Order Authorizing Subsidy for Increased Program-Wide - re: EAS at Massena, New York DOT-OST-1997-2842 | Jefferson County NY, Ogdensburg, NY, Bridge and Port Authority and Town of Massena, NY | Other | Correspondence | 2005-04-20T04:00:00Z | 2005 | 4 | 2005-04-20T04:00:00Z | 2005-04-21T03:59:59Z | 2013-09-24T13:01:08Z | 0 | 0 | 09000064802a438f | |
| DOT-OST-1997-2842-0048-0001 | DOT | 97-8-14 Order Authorizing Subsidy for Increased Program-Wide - re: EAS at Massena, New York DOT-OST-1997-2842 | Jefferson County NY, Ogdensburg, NY, Bridge and Port Authority and Town of Massena, NY | Other | Correspondence | 2005-04-20T04:00:00Z | 2005 | 4 | 2005-04-20T04:00:00Z | 2005-04-21T03:59:59Z | 2013-09-24T11:43:51Z | 0 | 0 | 09000064802a438d | |
| DOT-OST-1997-2842-0046 | DOT | 97-8-14 Order Authorizing Subsidy for Increased Program-Wide - re: EAS at Massena, New York DOT-OST-1997-2842 | Mayor Jeffrey E. Graham of Watertown, NY | Other | Letter(s) | 2005-03-30T05:00:00Z | 2005 | 3 | 2005-03-30T05:00:00Z | 2005-03-31T04:59:59Z | 2024-11-11T21:49:06Z | 1 | 0 | 09000064802a438b | |
| DOT-OST-1997-2842-0045 | DOT | 97-8-14 Order Authorizing Subsidy for Increased Program-Wide - re: EAS at Massena, New York DOT-OST-1997-2842 | Mesa Air Group, Inc. d/b/a Air Midwest | Other | Proposal(s) | 2005-03-28T05:00:00Z | 2005 | 3 | 2005-03-28T05:00:00Z | 2005-03-29T04:59:59Z | 2024-11-11T21:48:47Z | 1 | 0 | 09000064802a438a | |
| DOT-OST-1997-2842-0044 | DOT | 97-8-14 Order Authorizing Subsidy for Increased Program-Wide - re: EAS at Massena, New York DOT-OST-1997-2842 | 2005-2-12 Order Requesting Proposals | Other | Order | 2005-02-17T05:00:00Z | 2005 | 2 | 2005-02-17T05:00:00Z | 2005-02-18T04:59:59Z | 2024-11-11T21:48:47Z | 1 | 0 | 09000064802a4389 |
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;