documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FMCSA-2015-0029" and posted_year = 2021 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FMCSA-2015-0029-0033 | FMCSA | None FMCSA-2015-0029 | In the Matter of National Distribution Services, Inc. - Order Granting Motion to Withdraw as Counsel | Other | Order | 2021-10-14T04:00:00Z | 2021 | 10 | 2021-10-14T04:00:00Z | 2024-11-07T00:31:30Z | 1 | 0 | 0900006484dc591c | ||
| FMCSA-2015-0029-0032 | FMCSA | None FMCSA-2015-0029 | In the Matter of National Distribution Services, Inc. - Motion to Withdraw as Counsel | Other | Motion | 2021-10-05T04:00:00Z | 2021 | 10 | 2021-10-05T04:00:00Z | 2024-11-07T00:32:21Z | 1 | 0 | 0900006484dba7d8 | ||
| FMCSA-2015-0029-0030 | FMCSA | None FMCSA-2015-0029 | In the Matter of National Distribution Services, Inc. - Notice of Amendment of Notice of Claim | Other | Amendment | 2021-09-15T04:00:00Z | 2021 | 9 | 2021-09-15T04:00:00Z | 2024-11-06T23:51:23Z | 1 | 0 | 0900006484d7f4c9 | ||
| FMCSA-2015-0029-0031 | FMCSA | None FMCSA-2015-0029 | In the Matter of National Distribution Services, Inc. - Claimant's Motion for Summary Judgment All Attachments and Exhibits | Other | Motion | 2021-09-15T04:00:00Z | 2021 | 9 | 2021-09-15T04:00:00Z | 2024-11-06T23:51:24Z | 1 | 0 | 0900006484d7f4cb | ||
| FMCSA-2015-0029-0029 | FMCSA | None FMCSA-2015-0029 | In the Matter of National Distribution Services, Inc. - Telephonic Prehearing Conference (June 29, 2021) | Other | Transcript(s) | 2021-07-15T04:00:00Z | 2021 | 7 | 2021-07-15T04:00:00Z | 2024-11-12T23:31:52Z | 1 | 0 | 0900006484bfa1c0 | ||
| FMCSA-2015-0029-0028 | FMCSA | None FMCSA-2015-0029 | In the Matter of National Distribution Services, Inc. - Prehearing Conference Report | Other | Report | 2021-06-29T04:00:00Z | 2021 | 6 | 2021-06-29T04:00:00Z | 2024-11-06T23:48:52Z | 1 | 0 | 0900006484bc0039 | ||
| FMCSA-2015-0029-0027 | FMCSA | None FMCSA-2015-0029 | In the Matter of National Distribution Services, Inc. - Notice of Appearance | Other | Correspondence | 2021-05-27T04:00:00Z | 2021 | 5 | 2021-05-27T04:00:00Z | 2024-11-06T23:48:12Z | 1 | 0 | 0900006484b3dffd | ||
| FMCSA-2015-0029-0026 | FMCSA | None FMCSA-2015-0029 | In the Matter of National Distribution Services, Inc. - Order Setting Prehearing Conference | Other | Order | 2021-05-25T04:00:00Z | 2021 | 5 | 2021-05-25T04:00:00Z | 2024-11-06T23:46:31Z | 1 | 0 | 0900006484ac830f | ||
| FMCSA-2015-0029-0025 | FMCSA | None FMCSA-2015-0029 | In the Matter of National Distribution Services, Inc. - Opposition to Fourth Motion by Claimant to Modify Litigation Schedule | Other | Objection(s) | 2021-04-19T04:00:00Z | 2021 | 4 | 2021-04-19T04:00:00Z | 2021-04-19T20:05:20Z | 0 | 0 | 0900006484aacd27 | ||
| FMCSA-2015-0029-0024 | FMCSA | None FMCSA-2015-0029 | In the Matter of National Distribution Services, Inc. - Order Granting Claimant's Fourth Motion to Modify Litigation Schedule | Other | Order | 2021-04-08T04:00:00Z | 2021 | 4 | 2021-04-08T04:00:00Z | 2024-11-06T23:46:08Z | 1 | 0 | 0900006484a9fee4 | ||
| FMCSA-2015-0029-0023 | FMCSA | None FMCSA-2015-0029 | In the Matter of National Distribution Services, Inc - Fourth Motion to Modify Litigation Schedule | Other | Motion | 2021-03-31T04:00:00Z | 2021 | 3 | 2021-03-31T04:00:00Z | 2024-11-06T23:45:47Z | 1 | 0 | 0900006484a92bfd |
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;