documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FMCSA-2018-0303" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, open_for_comment, withdrawn, 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-2018-0303-0008 | FMCSA | None FMCSA-2018-0303 | In the Matter of Williamson Distributors, Inc. - Notice of Arbitration Decision | Other | Decision | 2020-11-18T05:00:00Z | 2020 | 11 | 2020-11-18T05:00:00Z | 2024-11-06T23:41:32Z | 1 | 0 | 090000648496536c | ||
| FMCSA-2018-0303-0007 | FMCSA | None FMCSA-2018-0303 | In the Matter of Williamson Distributors, Inc - Letter | Other | Letter(s) | 2019-05-06T04:00:00Z | 2019 | 5 | 2019-05-06T04:00:00Z | 2024-11-12T23:00:06Z | 1 | 0 | 0900006483c3a8c4 | ||
| FMCSA-2018-0303-0006 | FMCSA | None FMCSA-2018-0303 | In the Matter of Williamson Distributors, Inc. - Order Referring Matter to Binding Arbitration | Other | Order | 2019-04-29T04:00:00Z | 2019 | 4 | 2019-04-29T04:00:00Z | 2024-11-12T22:59:44Z | 1 | 0 | 0900006483c107b4 | ||
| FMCSA-2018-0303-0005 | FMCSA | None FMCSA-2018-0303 | In the Matter of Williamson Distributors, Inc. - Field Administrator's Consent to Arbitration | Other | Consent | 2019-04-04T04:00:00Z | 2019 | 4 | 2019-04-04T04:00:00Z | 2024-11-12T22:58:38Z | 1 | 0 | 0900006483b649a2 | ||
| FMCSA-2018-0303-0004 | FMCSA | None FMCSA-2018-0303 | In the Matter of Williamson Distributors, Inc. - Consent to Binding Arbitration | Other | Consent | 2019-03-26T04:00:00Z | 2019 | 3 | 2019-03-26T04:00:00Z | 2024-11-12T22:57:09Z | 1 | 0 | 0900006483b2f639 | ||
| FMCSA-2018-0303-0003 | FMCSA | None FMCSA-2018-0303 | In the Matter of Williamson Distributors, Inc. - Interim Order | Other | Order | 2019-02-26T05:00:00Z | 2019 | 2 | 2019-02-26T05:00:00Z | 2024-11-12T22:56:20Z | 1 | 0 | 0900006483aa7b51 | ||
| FMCSA-2018-0303-0002 | FMCSA | None FMCSA-2018-0303 | In the Matter of Williamson Distributors, Inc. - Field Administrator's Motion for More Definite Statement | Other | Motion | 2018-09-27T04:00:00Z | 2018 | 9 | 2018-09-27T04:00:00Z | 2024-11-12T06:18:30Z | 1 | 0 | 090000648377d879 | ||
| FMCSA-2018-0303-0001 | FMCSA | None FMCSA-2018-0303 | American Trucking Association - Exemption/Rulemaking | Other | 2018-09-27T00:00:00Z | 2018 | 9 | 2024-11-12T06:18:40Z | 0 | 1 | 090000648377bba6 |
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;