documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FMCSA-1997-2290" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
- Supporting & Related Material 3
- Notice 1
- Other 1
- Rule 1
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-1997-2290-0017 | FMCSA | Notice of Proposed Rulemaking - General Jurisdiction Over Freight Forwarder Service FMCSA-1997-2290 | U.S. DOT/FMCSA - Environmental Categorical Exclusion Determiniation, General Jurisdiction over Freight Forwarder Service Final Rule | Supporting & Related Material | Environmental Categorical Exclusion Determination | 2009-04-07T04:00:00Z | 2009 | 4 | 2009-04-07T14:28:43Z | 0 | 0 | 0900006480946947 | |||
| FMCSA-1997-2290-0018 | FMCSA | Notice of Proposed Rulemaking - General Jurisdiction Over Freight Forwarder Service FMCSA-1997-2290 | U.S. DOT/FMCSA - General jurisdiction over Freight Forwarded Service Final Rule: EO 12866 and CRA Requirements | Other | Forms | 2009-04-07T04:00:00Z | 2009 | 4 | 2009-04-07T04:00:00Z | 2013-07-27T22:42:04Z | 0 | 0 | 0900006480947758 | ||
| FMCSA-1997-2290-0015 | FMCSA | Notice of Proposed Rulemaking - General Jurisdiction Over Freight Forwarder Service FMCSA-1997-2290 | U.S. DOT/FMCSA - Regulatory Analysis, General Jurisdiction over Freight Forwarder Service Final Rule | Supporting & Related Material | Analysis | 2009-04-06T04:00:00Z | 2009 | 4 | 2009-04-06T15:46:20Z | 0 | 0 | 09000064809445bf | |||
| FMCSA-1997-2290-0016 | FMCSA | Notice of Proposed Rulemaking - General Jurisdiction Over Freight Forwarder Service FMCSA-1997-2290 | General Jurisdiction Over Freight Forwarder Service | Rule | Federal Register Publication | 2009-04-06T04:00:00Z | 2009 | 4 | 2009-04-06T04:00:00Z | 2011-06-11T17:23:57Z | E9-07639 | 0 | 0 | 0900006480944105 | |
| FMCSA-1997-2290-0014 | FMCSA | Notice of Proposed Rulemaking - General Jurisdiction Over Freight Forwarder Service FMCSA-1997-2290 | US DOT/FMCSA - Legislative History: Surface Freight Forwarders Deregulation Act of 1986 | Supporting & Related Material | Supporting Documentation | 2007-02-22T05:00:00Z | 2007 | 2 | 2024-11-11T21:38:34Z | 0 | 0 | 09000064802a35a7 | |||
| FMCSA-1997-2290-0001 | FMCSA | Notice of Proposed Rulemaking - General Jurisdiction Over Freight Forwarder Service FMCSA-1997-2290 | Notice of Proposed Rulemaking (NPRM) - General Jurisdiction Over Freight Forwarder Service | Notice | Notice of Proposed Rulemaking (NPRM) | 1997-01-28T05:00:00Z | 1997 | 1 | 1997-01-28T05:00:00Z | 1997-04-01T04:59:59Z | 2024-11-11T21:38:18Z | 1 | 0 | 09000064802a35a2 |
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;