documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "DOT-OST-2012-0163" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, last_modified, 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-2012-0163-0018 | DOT | None DOT-OST-2012-0163 | Town of Massena, New York (Comments) | Other | Correspondence | 2016-12-14T05:00:00Z | 2016 | 12 | 2016-12-14T05:00:00Z | 2024-11-12T06:18:08Z | 1 | 0 | 090000648240466c | ||
| DOT-OST-2012-0163-0017 | DOT | None DOT-OST-2012-0163 | Request for Comment (November 10, 2016) | Other | Request | 2016-12-07T05:00:00Z | 2016 | 12 | 2016-12-07T05:00:00Z | 2024-11-12T06:15:50Z | 1 | 0 | 09000064823e5aab | ||
| DOT-OST-2012-0163-0016 | DOT | None DOT-OST-2012-0163 | Hyannis Air Service, Inc. d/b/a Cape Air (Proposal) | Other | Proposal(s) | 2016-11-10T05:00:00Z | 2016 | 11 | 2016-11-10T05:00:00Z | 2024-11-07T23:51:58Z | 1 | 0 | 0900006482389992 | ||
| DOT-OST-2012-0163-0014 | DOT | None DOT-OST-2012-0163 | Aviation Street (Proposal) | Other | Proposal(s) | 2016-11-10T05:00:00Z | 2016 | 11 | 2016-11-10T05:00:00Z | 2024-11-12T06:16:52Z | 1 | 0 | 09000064823897be | ||
| DOT-OST-2012-0163-0015 | DOT | None DOT-OST-2012-0163 | Boutique Air (Proposal) | Other | Proposal(s) | 2016-11-10T05:00:00Z | 2016 | 11 | 2016-11-10T05:00:00Z | 2024-11-12T06:16:52Z | 1 | 0 | 090000648238998e | ||
| DOT-OST-2012-0163-0013 | DOT | None DOT-OST-2012-0163 | 2016-10-3 Order Requesting Proposals | Other | Order | 2016-10-07T04:00:00Z | 2016 | 10 | 2016-10-07T04:00:00Z | 2024-11-11T21:32:58Z | 1 | 0 | 09000064822aebe7 | ||
| DOT-OST-2012-0163-0012 | DOT | None DOT-OST-2012-0163 | 2016-5-8 Order Requesting Applications | Other | Order | 2016-05-17T04:00:00Z | 2016 | 5 | 2016-05-17T04:00:00Z | 2024-11-07T23:47:24Z | 1 | 0 | 0900006481fcc26d |
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;