documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "DOT-OST-2017-0045" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-2017-0045-0202 | DOT | None DOT-OST-2017-0045 | Filed by the Department of Transportation for the Week Ending December 7, 2018 | Other | Report | 2018-12-11T05:00:00Z | 2018 | 12 | 2018-12-11T05:00:00Z | 2018-12-11T13:53:44Z | 0 | 0 | 0900006483980c19 | ||
| DOT-OST-2017-0045-0201 | DOT | None DOT-OST-2017-0045 | Filed by the Department of Transportation for the Week Ending November 16, 2018 | Other | Report | 2018-11-16T05:00:00Z | 2018 | 11 | 2018-11-16T05:00:00Z | 2018-11-16T16:31:45Z | 0 | 0 | 09000064838e06a8 | ||
| DOT-OST-2017-0045-0200 | DOT | None DOT-OST-2017-0045 | Filed by the Department of Transportation for the Week Ending October 26, 2018 | Other | Report | 2018-10-26T04:00:00Z | 2018 | 10 | 2018-10-26T04:00:00Z | 2018-10-26T14:22:50Z | 0 | 0 | 0900006483857187 | ||
| DOT-OST-2017-0045-0199 | DOT | None DOT-OST-2017-0045 | Filed by the Department of Transportation for the Week Ending September 14, 2018 | Other | Report | 2018-09-14T04:00:00Z | 2018 | 9 | 2018-09-14T04:00:00Z | 2018-09-14T20:40:25Z | 0 | 0 | 09000064836f4815 | ||
| DOT-OST-2017-0045-0198 | DOT | None DOT-OST-2017-0045 | Filed by the Department of Transportation for the Week Ending August 10, 2018 | Other | Report | 2018-08-10T04:00:00Z | 2018 | 8 | 2018-08-10T04:00:00Z | 2018-08-10T17:17:39Z | 0 | 0 | 0900006483602bf4 | ||
| DOT-OST-2017-0045-0197 | DOT | None DOT-OST-2017-0045 | Filed by the Department of Transportation for the Week Ending June 15, 2018 | Other | Report | 2018-06-15T04:00:00Z | 2018 | 6 | 2018-06-15T04:00:00Z | 2018-06-15T20:17:20Z | 0 | 0 | 090000648341de5b | ||
| DOT-OST-2017-0045-0196 | DOT | None DOT-OST-2017-0045 | Filed by the Department of Transportation for the Week Ending April 6, 2018 | Other | Report | 2018-04-06T04:00:00Z | 2018 | 4 | 2018-04-06T04:00:00Z | 2018-04-06T18:28:21Z | 0 | 0 | 09000064830b0744 | ||
| DOT-OST-2017-0045-0195 | DOT | None DOT-OST-2017-0045 | Filed by the Department of Transportation for the Week Ending March 23, 2018 | Other | Report | 2018-03-23T04:00:00Z | 2018 | 3 | 2018-03-23T04:00:00Z | 2018-03-23T19:05:25Z | 0 | 0 | 0900006483045872 | ||
| DOT-OST-2017-0045-0194 | DOT | None DOT-OST-2017-0045 | Filed by the Department of Transportation for the Week Ending January 26 2018 | Other | Report | 2018-01-26T05:00:00Z | 2018 | 1 | 2018-01-26T05:00:00Z | 2018-01-26T19:07:38Z | 0 | 0 | 0900006482e6ddec | ||
| DOT-OST-2017-0045-0193 | DOT | None DOT-OST-2017-0045 | Filed by the Department of Transportation for the Week Ending January 5, 2018 | Other | Report | 2018-01-05T05:00:00Z | 2018 | 1 | 2018-01-05T05:00:00Z | 2018-01-05T19:49:52Z | 0 | 0 | 0900006482d9d9cc |
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;