documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FMCSA-2018-0223" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- FMCSA 6
| 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-0223-0040 | FMCSA | None FMCSA-2018-0223 | Exemption Renewal: Parts and Accessories Necessary for Safe Operation; Groendyke Transport, Inc. | Notice | Notice of Renewal | 2024-11-20T05:00:00Z | 2024 | 11 | 2024-11-20T05:00:00Z | 2024-11-20T13:19:24Z | 2024-27091 | 1 | 0 | 0900006486829f8d | |
| FMCSA-2018-0223-0039 | FMCSA | None FMCSA-2018-0223 | Request for Renewal of Exemption | Supporting & Related Material | Petition | 2024-07-11T04:00:00Z | 2024 | 7 | 2024-07-11T15:37:46Z | 0 | 0 | 09000064865e89ee | |||
| FMCSA-2018-0223-0038 | FMCSA | None FMCSA-2018-0223 | Exemption Application: Parts and Accessories Necessary for Safe Operation; Groendyke Transport, Inc. | Notice | Request for Comments | 2024-06-28T04:00:00Z | 2024 | 6 | 2024-06-28T04:00:00Z | 2024-07-30T03:59:59Z | 2024-11-12T22:35:04Z | 2024-14335 | 1 | 0 | 09000064865d09dc |
| FMCSA-2018-0223-0037 | FMCSA | None FMCSA-2018-0223 | Parts and Accessories Necessary for Safe Operation; Exemption Applications: Groendyke Transport, Inc. | Notice | Notice of Intent | 2019-09-09T04:00:00Z | 2019 | 9 | 2019-09-09T04:00:00Z | 2019-09-09T13:58:30Z | 2019-08463 | 0 | 0 | 0900006483bfaf27 | |
| FMCSA-2018-0223-0036 | FMCSA | None FMCSA-2018-0223 | Groendyke Transport Exemption Application | Other | Application | 2019-01-03T05:00:00Z | 2019 | 1 | 2019-01-03T05:00:00Z | 2019-09-06T13:12:46Z | 0 | 0 | 09000064839d6080 | ||
| FMCSA-2018-0223-0001 | FMCSA | None FMCSA-2018-0223 | Qualification of Drivers; Exemption Applications: Groendyke Transport, Inc.; Parts and Accessories Necessary for Safe Operation | Notice | Request for Comments | 2018-07-30T04:00:00Z | 2018 | 7 | 2018-07-30T04:00:00Z | 2018-08-30T03:59:59Z | 2019-09-06T13:12:29Z | 2018-16223 | 0 | 0 | 0900006483582a19 |
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;