documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "DOT-OST-1996-1711" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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-1996-1711-0119 | DOT | Great Lakes Aviation, LTD. - 90-Day Notice to Terminate Air Service at Manistee, Michigan DOT-OST-1996-1711 | Addendum No. 1 | Other | Agreement | 2012-12-06T05:00:00Z | 2012 | 12 | 2024-11-12T05:11:02Z | 1 | 0 | 090000648117d8d4 | |||
| DOT-OST-1996-1711-0118 | DOT | Great Lakes Aviation, LTD. - 90-Day Notice to Terminate Air Service at Manistee, Michigan DOT-OST-1996-1711 | Grant Agreement between the U.S. Department of Transportation and the Manistee Blacker Airport Authority, in Association with the Community of Manistee/Lundington, Michigan, Under the Alternate Essential Air Service Program | Other | Agreement | 2012-05-11T04:00:00Z | 2012 | 5 | 2012-05-11T04:00:00Z | 2024-11-07T22:44:03Z | 1 | 0 | 090000648100a517 | ||
| DOT-OST-1996-1711-0117 | DOT | Great Lakes Aviation, LTD. - 90-Day Notice to Terminate Air Service at Manistee, Michigan DOT-OST-1996-1711 | 2012-3-9 Order Setting Annual Service Level and Total Costs Under the Alternate Essential Air Service Program | Other | Order | 2012-03-16T04:00:00Z | 2012 | 3 | 2012-03-16T04:00:00Z | 2024-11-12T04:45:14Z | 1 | 0 | 0900006480fd88e0 | ||
| DOT-OST-1996-1711-0116 | DOT | Great Lakes Aviation, LTD. - 90-Day Notice to Terminate Air Service at Manistee, Michigan DOT-OST-1996-1711 | Manistee/Ludington, Michigan Revised Alternate Essential Air Service Proposal Proposal | Other | Revision(s) | 2012-03-14T04:00:00Z | 2012 | 3 | 2012-03-14T04:00:00Z | 2024-11-12T04:44:09Z | 1 | 0 | 0900006480fd64e3 | ||
| DOT-OST-1996-1711-0115 | DOT | Great Lakes Aviation, LTD. - 90-Day Notice to Terminate Air Service at Manistee, Michigan DOT-OST-1996-1711 | Michigan Department of Transportation Office of Aeronautics | Other | Correspondence | 2012-02-23T05:00:00Z | 2012 | 2 | 2012-02-23T05:00:00Z | 2013-04-23T19:13:43Z | 0 | 0 | 0900006480fbdaa8 | ||
| DOT-OST-1996-1711-0113 | DOT | Great Lakes Aviation, LTD. - 90-Day Notice to Terminate Air Service at Manistee, Michigan DOT-OST-1996-1711 | Manistee County Convention and Visitor's Bureau | Other | Correspondence | 2012-01-18T05:00:00Z | 2012 | 1 | 2012-01-18T05:00:00Z | 2013-04-23T19:14:46Z | 0 | 0 | 0900006480f989f5 | ||
| DOT-OST-1996-1711-0112 | DOT | Great Lakes Aviation, LTD. - 90-Day Notice to Terminate Air Service at Manistee, Michigan DOT-OST-1996-1711 | Manistee Area Chamber of Commerce | Other | Correspondence | 2012-01-18T05:00:00Z | 2012 | 1 | 2012-01-18T05:00:00Z | 2013-04-23T19:15:31Z | 0 | 0 | 0900006480f98b5f | ||
| DOT-OST-1996-1711-0114 | DOT | Great Lakes Aviation, LTD. - 90-Day Notice to Terminate Air Service at Manistee, Michigan DOT-OST-1996-1711 | Manistee County Board of Commissioners | Other | Correspondence | 2012-01-18T05:00:00Z | 2012 | 1 | 2012-01-18T05:00:00Z | 2013-04-23T19:14:15Z | 0 | 0 | 0900006480f98af2 | ||
| DOT-OST-1996-1711-0111 | DOT | Great Lakes Aviation, LTD. - 90-Day Notice to Terminate Air Service at Manistee, Michigan DOT-OST-1996-1711 | Alliance for Economic Success | Other | Correspondence | 2012-01-18T05:00:00Z | 2012 | 1 | 2012-01-18T05:00:00Z | 2024-11-11T21:36:18Z | 1 | 0 | 0900006480f98b5d | ||
| DOT-OST-1996-1711-0110 | DOT | Great Lakes Aviation, LTD. - 90-Day Notice to Terminate Air Service at Manistee, Michigan DOT-OST-1996-1711 | Proposal Under the Alternate Essential Air Service Pilot Program | Other | Proposal(s) | 2012-01-06T05:00:00Z | 2012 | 1 | 2012-01-06T05:00:00Z | 2024-11-12T04:49:20Z | 1 | 0 | 0900006480f8f7bf |
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;