documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FMCSA-2004-19474" and posted_year = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, last_modified, open_for_comment, withdrawn, posted_date (date), comment_start_date (date), comment_end_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-2004-19474-0012 | FMCSA | MSC - In the Matter of Central Waste System, Inc. - Joint Motion for Extension of Time to Submit Evidence FMCSA-2004-19474 | In the Matter of Central Waste System, Inc.- Administrative Law Judge's Order Accepting Settlement, Dismissing Proceeding and Closing Docket | Other | Order | 2007-11-07T05:00:00Z | 2007 | 11 | 2007-11-07T05:00:00Z | 2024-11-12T04:07:26Z | 1 | 0 | 0900006480360c6f | ||
| FMCSA-2004-19474-0011 | FMCSA | MSC - In the Matter of Central Waste System, Inc. - Joint Motion for Extension of Time to Submit Evidence FMCSA-2004-19474 | In The Matter of Central Waste Systems, Inc., - Notice of Settlement and Motion to Close tha Docket | Other | Notification of Settlement | 2007-11-01T04:00:00Z | 2007 | 11 | 2007-11-01T04:00:00Z | 2024-11-07T17:38:36Z | 1 | 0 | 090000648035e584 | ||
| FMCSA-2004-19474-0010 | FMCSA | MSC - In the Matter of Central Waste System, Inc. - Joint Motion for Extension of Time to Submit Evidence FMCSA-2004-19474 | In the Matter of Central Waste System, Inc. Notice of Appearance | Notice | Notice | 2007-09-28T04:00:00Z | 2007 | 9 | 2007-09-28T04:00:00Z | 2007-09-29T03:59:59Z | 2024-11-08T05:31:20Z | 1 | 0 | 09000064802ed542 | |
| FMCSA-2004-19474-0009 | FMCSA | MSC - In the Matter of Central Waste System, Inc. - Joint Motion for Extension of Time to Submit Evidence FMCSA-2004-19474 | In the Matter of Mawafag A. Abedallah dba Sfinx Express Transit - Administrative Law Judge's Prehearing Order Establishing Procedures | Other | 2007-09-13T00:00:00Z | 2007 | 9 | 2024-11-08T04:10:07Z | 0 | 1 | 09000064802b5769 | ||||
| FMCSA-2004-19474-0008 | FMCSA | MSC - In the Matter of Central Waste System, Inc. - Joint Motion for Extension of Time to Submit Evidence FMCSA-2004-19474 | In the Matter of Central Waste Systems, Inc - Notice of Assignment of Proceeding | Notice | Notice of Assignment of Proceeding | 2007-09-07T04:00:00Z | 2007 | 9 | 2007-09-07T04:00:00Z | 2007-09-08T03:59:59Z | 2024-11-08T04:10:07Z | 1 | 0 | 09000064802b5768 | |
| FMCSA-2004-19474-0007 | FMCSA | MSC - In the Matter of Central Waste System, Inc. - Joint Motion for Extension of Time to Submit Evidence FMCSA-2004-19474 | In the Matter of Central Waste System, Inc. - Order Appointing Administrative Law Judge | Other | Order | 2007-08-30T04:00:00Z | 2007 | 8 | 2007-08-30T04:00:00Z | 2007-08-31T03:59:59Z | 2024-11-08T04:10:06Z | 1 | 0 | 09000064802b5767 |
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;