documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "FMCSA" and docket_id = "FMCSA-2007-0072" 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-2007-0072-0008 | FMCSA | SSC - In the Matter of Nationwide Express - Hazardous Materials Safety Permit Review FMCSA-2007-0072 | In the Matter of Nationwide Express, Inc. - Order Dismissing Proceeding | Other | Order | 2008-08-22T04:00:00Z | 2008 | 8 | 2008-08-22T04:00:00Z | 2024-11-12T04:18:17Z | 1 | 0 | 09000064806d3316 | ||
| FMCSA-2007-0072-0007 | FMCSA | SSC - In the Matter of Nationwide Express - Hazardous Materials Safety Permit Review FMCSA-2007-0072 | In the Matter of Nationwide Express - Unopposed Motion To Dismiss | Other | Motion | 2008-05-30T04:00:00Z | 2008 | 5 | 2008-05-30T04:00:00Z | 2013-08-11T04:25:58Z | 0 | 0 | 0900006480605fe5 | ||
| FMCSA-2007-0072-0006 | FMCSA | SSC - In the Matter of Nationwide Express - Hazardous Materials Safety Permit Review FMCSA-2007-0072 | In the Matter of Nationwide Express, Inc. - Response to Amended Request for Administrative Review | Other | Response(s) | 2008-01-18T05:00:00Z | 2008 | 1 | 2008-01-18T05:00:00Z | 2024-11-12T04:09:24Z | 1 | 0 | 090000648039d1f5 | ||
| FMCSA-2007-0072-0005 | FMCSA | SSC - In the Matter of Nationwide Express - Hazardous Materials Safety Permit Review FMCSA-2007-0072 | In the Matter of Nationwide Express - Hazardous Materials Safety Permit Review | Other | Other | 2008-01-17T05:00:00Z | 2008 | 1 | 2008-01-17T05:00:00Z | 2024-11-08T03:48:21Z | 1 | 0 | 090000648039c084 | ||
| FMCSA-2007-0072-0004 | FMCSA | SSC - In the Matter of Nationwide Express - Hazardous Materials Safety Permit Review FMCSA-2007-0072 | In the Matter of Nationwide Express - Request for Information | Other | Request | 2007-12-21T05:00:00Z | 2007 | 12 | 2007-12-21T05:00:00Z | 2013-07-27T20:28:33Z | 0 | 0 | 090000648037c75a | ||
| FMCSA-2007-0072-0003 | FMCSA | SSC - In the Matter of Nationwide Express - Hazardous Materials Safety Permit Review FMCSA-2007-0072 | In the Matter of Nationwide Express - Amendment of Requested Administrative Review | Other | Amendment | 2007-12-19T05:00:00Z | 2007 | 12 | 2007-12-19T05:00:00Z | 2024-11-07T21:47:46Z | 1 | 0 | 090000648037bf78 | ||
| FMCSA-2007-0072-0002 | FMCSA | SSC - In the Matter of Nationwide Express - Hazardous Materials Safety Permit Review FMCSA-2007-0072 | In The Matter of Nationwide Express, Inc. - Response To Request For Administrative Review | Other | Response(s) | 2007-11-29T05:00:00Z | 2007 | 11 | 2007-11-29T05:00:00Z | 2024-11-11T21:36:02Z | 1 | 0 | 09000064803699d4 | ||
| FMCSA-2007-0072-0001 | FMCSA | SSC - In the Matter of Nationwide Express - Hazardous Materials Safety Permit Review FMCSA-2007-0072 | In The Matter of Nationwide Express, Inc. - Response From Petitioner | Other | Response(s) | 2007-11-29T05:00:00Z | 2007 | 11 | 2007-11-29T05:00:00Z | 2024-11-07T23:55:13Z | 1 | 0 | 09000064803691b2 |
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;