documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "DOT-OST-2006-25228" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, 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-2006-25228-0058 | DOT | None DOT-OST-2006-25228 | 2016-11-8 Order Granting Waivers | Other | Order | 2016-11-10T05:00:00Z | 2016 | 11 | 2016-11-10T05:00:00Z | 2024-11-07T23:49:56Z | 1 | 0 | 0900006482389c2c | ||
| DOT-OST-2006-25228-0059 | DOT | None DOT-OST-2006-25228 | Hagerstown Regional Airport (Correspondence) | Other | Correspondence | 2016-11-10T05:00:00Z | 2016 | 11 | 2016-11-10T05:00:00Z | 2024-11-12T06:16:53Z | 1 | 0 | 0900006482389c19 | ||
| DOT-OST-2006-25228-0057 | DOT | None DOT-OST-2006-25228 | Southern Airways Express (Correspondence) | Other | Correspondence | 2016-11-08T05:00:00Z | 2016 | 11 | 2016-11-08T05:00:00Z | 2024-11-11T21:32:16Z | 1 | 0 | 090000648237ce3b | ||
| DOT-OST-2006-25228-0056 | DOT | None DOT-OST-2006-25228 | Hagerstown Regional Airport (Correspondence) | Other | Correspondence | 2016-11-08T05:00:00Z | 2016 | 11 | 2016-11-08T05:00:00Z | 2024-11-11T21:31:36Z | 1 | 0 | 0900006482379370 | ||
| DOT-OST-2006-25228-0055 | DOT | None DOT-OST-2006-25228 | 2016-11-4 Order Approving Alternate Service Pattern | Other | Order | 2016-11-04T04:00:00Z | 2016 | 11 | 2016-11-04T04:00:00Z | 2024-11-07T23:49:48Z | 1 | 0 | 0900006482374c04 | ||
| DOT-OST-2006-25228-0054 | DOT | None DOT-OST-2006-25228 | Ex Parte Correspondence to Honorable John K. Delaney | Other | Correspondence | 2016-11-03T04:00:00Z | 2016 | 11 | 2016-11-03T04:00:00Z | 2024-11-07T23:51:58Z | 1 | 0 | 090000648236afba | ||
| DOT-OST-2006-25228-0053 | DOT | None DOT-OST-2006-25228 | 2016-8-21 Final Order Terminating Eligibility, Granting Waivers for Certain Communities, and Establishing Waiver Procedures | Other | Order | 2016-08-29T04:00:00Z | 2016 | 8 | 2016-08-29T04:00:00Z | 2024-11-11T21:29:41Z | 1 | 0 | 09000064821a9f22 | ||
| DOT-OST-2006-25228-0052 | DOT | None DOT-OST-2006-25228 | 2016-5-17 Order Tentatively Terminating Essential Air Service Eligibility and Tentatively Granting a Waiver for Communities That Experienced a Service Hiatus | Other | Order | 2016-05-20T04:00:00Z | 2016 | 5 | 2016-05-20T04:00:00Z | 2024-11-11T21:27:27Z | 1 | 0 | 0900006481fe566e | ||
| DOT-OST-2006-25228-0051 | DOT | None DOT-OST-2006-25228 | 2016-5-8 Order Requesting Applications | Other | Order | 2016-05-17T04:00:00Z | 2016 | 5 | 2016-05-17T04:00:00Z | 2024-11-11T21:27:15Z | 1 | 0 | 0900006481fcbf71 | ||
| DOT-OST-2006-25228-0050 | DOT | None DOT-OST-2006-25228 | 2016-3-14 Order Extending Essential Air Service Contract Subject to Community's Continued EAS Eligibility and Availability of Funds | Other | Order | 2016-03-07T05:00:00Z | 2016 | 3 | 2016-03-07T05:00:00Z | 2024-11-12T05:53:35Z | 1 | 0 | 0900006481ea7037 |
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;