documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FMCSA-1998-3947" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, last_modified, 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-1998-3947-0201 | FMCSA | FHWA HQ Federal Motor Carrier Safety Regulations - General - Commercial Motor Vehicle Marking FMCSA-1998-3947 | Transportation Lawyers Association - Petition for Reconsideration | Other | Petition for Reconsideration | 2000-06-29T04:00:00Z | 2000 | 6 | 2000-06-29T04:00:00Z | 2000-06-30T03:59:59Z | 2024-11-12T03:05:56Z | 1 | 0 | 09000064803237b5 | |
| FMCSA-1998-3947-0200 | FMCSA | FHWA HQ Federal Motor Carrier Safety Regulations - General - Commercial Motor Vehicle Marking FMCSA-1998-3947 | U.S. DOT/FHWA- Motor Vehicle Marking Requirement Final Regulatory Evaluation and Regulatory Flexibility Analysis | Supporting & Related Material | Supplement | 2000-06-27T04:00:00Z | 2000 | 6 | 2024-11-12T03:05:56Z | 0 | 0 | 09000064803237b4 | |||
| FMCSA-1998-3947-0199 | FMCSA | FHWA HQ Federal Motor Carrier Safety Regulations - General - Commercial Motor Vehicle Marking FMCSA-1998-3947 | Final Rule | Rule | Federal Register Publication | 2000-06-02T04:00:00Z | 2000 | 6 | 2000-06-02T04:00:00Z | 2000-06-03T03:59:59Z | 2024-11-12T03:05:56Z | 1 | 0 | 09000064803237b1 | |
| FMCSA-1998-3947-0198 | FMCSA | FHWA HQ Federal Motor Carrier Safety Regulations - General - Commercial Motor Vehicle Marking FMCSA-1998-3947 | Paperwork Reduction Act | Other | OMB Review | 2000-05-19T04:00:00Z | 2000 | 5 | 2000-05-19T04:00:00Z | 2000-05-23T03:59:59Z | 2024-11-12T03:05:32Z | 1 | 0 | 09000064803237b0 | |
| FMCSA-1998-3947-0197 | FMCSA | FHWA HQ Federal Motor Carrier Safety Regulations - General - Commercial Motor Vehicle Marking FMCSA-1998-3947 | Preliminary Regulatory Evaluation and Regulatory Flexibility Analysis | Supporting & Related Material | Supplement | 1999-05-14T04:00:00Z | 1999 | 5 | 2024-11-12T03:05:32Z | 0 | 0 | 09000064803237af | |||
| FMCSA-1998-3947-0001 | FMCSA | FHWA HQ Federal Motor Carrier Safety Regulations - General - Commercial Motor Vehicle Marking FMCSA-1998-3947 | FHWA HQ -Federal Motor Carrier Safety Regulations; General; Commercial Motor Vehicle Marking - Notice of Proposed Rulemaking; Request for Comments | Rule | Federal Register Publication | 1998-06-16T04:00:00Z | 1998 | 6 | 1998-06-16T04:00:00Z | 1998-06-17T03:59:59Z | 2024-11-12T03:08:33Z | 1 | 0 | 0900006480323738 |
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;