documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FMCSA-2014-0356" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FMCSA-2014-0356-0013 | FMCSA | None FMCSA-2014-0356 | In the Matter of Discovery Tours NW, LLC dba D. Tours NW - Pre Hearing Conference Report | Other | Report | 2017-12-18T05:00:00Z | 2017 | 12 | 2017-12-18T05:00:00Z | 2024-11-07T01:12:55Z | 1 | 0 | 0900006482d33bb3 | ||
| FMCSA-2014-0356-0012 | FMCSA | None FMCSA-2014-0356 | In the Matter of Discovery Tours NW, LLC dba D. Tours NW - FA Notice of Inability to Meet and Confer and Motion for Pre-Hearing Conference | Other | Adjudication Notice | 2017-11-16T05:00:00Z | 2017 | 11 | 2017-11-16T05:00:00Z | 2024-11-07T01:12:07Z | 1 | 0 | 0900006482c7cb10 | ||
| FMCSA-2014-0356-0011 | FMCSA | None FMCSA-2014-0356 | In the Matter of Discovery Tours NW, LLC dba D. Tours NW - Notice of Withdrawal of Counsel | Other | Withdrawal | 2017-10-11T04:00:00Z | 2017 | 10 | 2017-10-11T04:00:00Z | 2024-11-07T01:18:44Z | 1 | 0 | 0900006482bb62e4 | ||
| FMCSA-2014-0356-0010 | FMCSA | None FMCSA-2014-0356 | In the Matter of Discovery Tours NW, LLC dba D. Tours NW - Order Directing the Parties to Meet and Confer Regarding Litigation and Scheduling Issues | Other | Order | 2017-09-21T04:00:00Z | 2017 | 9 | 2017-09-21T04:00:00Z | 2024-11-07T01:19:16Z | 1 | 0 | 0900006482b6985d | ||
| FMCSA-2014-0356-0009 | FMCSA | None FMCSA-2014-0356 | In the Matter of Discovery Tours NW, LLC dba D. Tours NW - Notice of Assignment of Proceeding | Other | Adjudication Notice | 2017-09-20T04:00:00Z | 2017 | 9 | 2017-09-20T04:00:00Z | 2024-11-07T01:11:24Z | 1 | 0 | 0900006482b4dfe6 | ||
| FMCSA-2014-0356-0008 | FMCSA | None FMCSA-2014-0356 | In the Matter of Discovery Tours NW LLC dba DTours NW - Order Appointing Administrative Law Judge | Other | Order | 2017-08-11T04:00:00Z | 2017 | 8 | 2017-08-11T04:00:00Z | 2024-11-07T01:08:09Z | 1 | 0 | 09000064829fbdfc | ||
| FMCSA-2014-0356-0007 | FMCSA | None FMCSA-2014-0356 | In the Matter of DiscoveryTours NW LLC dba DTours NW - Notice of Appearance | Other | Adjudication Notice | 2017-07-13T04:00:00Z | 2017 | 7 | 2017-07-13T04:00:00Z | 2024-11-07T01:03:49Z | 1 | 0 | 090000648291377d |
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;