documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FMCSA-2001-10261" and document_type = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2001-10261-0013 | FMCSA | WSC - In the Matter of Sound Solutions - Request for Stay of Civil Penalty FMCSA-2001-10261 | In the Matter of Center for Hearing, Speech and Language dba Sound Solutions - Order of Dismissal | Other | Order | 2005-03-21T05:00:00Z | 2005 | 3 | 2005-03-21T05:00:00Z | 2005-03-22T04:59:59Z | 2024-11-08T04:17:18Z | 1 | 0 | 09000064802b64db | |
| FMCSA-2001-10261-0012 | FMCSA | WSC - In the Matter of Sound Solutions - Request for Stay of Civil Penalty FMCSA-2001-10261 | In the Matter of Center for Hearing, Speech and Language dba Sound Solution - Procedural Order | Other | Order | 2005-02-23T05:00:00Z | 2005 | 2 | 2005-02-23T05:00:00Z | 2005-02-24T04:59:59Z | 2024-11-08T04:17:18Z | 1 | 0 | 09000064802b64da | |
| FMCSA-2001-10261-0009 | FMCSA | WSC - In the Matter of Sound Solutions - Request for Stay of Civil Penalty FMCSA-2001-10261 | In the Matter of Center for Hearing,Speech,and Language dba Sound Solutions - Order Vacating Final Agency Order and Appointing Administrative Law Judge | Other | Order | 2004-11-24T05:00:00Z | 2004 | 11 | 2004-11-24T05:00:00Z | 2004-11-25T04:59:59Z | 2024-11-08T04:17:20Z | 1 | 0 | 09000064802b64e2 | |
| FMCSA-2001-10261-0006 | FMCSA | WSC - In the Matter of Sound Solutions - Request for Stay of Civil Penalty FMCSA-2001-10261 | Withdrawal As Attorney of Record | Other | Withdrawal | 2004-06-03T04:00:00Z | 2004 | 6 | 2004-06-03T04:00:00Z | 2004-06-04T03:59:59Z | 2024-11-08T04:17:19Z | 1 | 0 | 09000064802b64e0 | |
| FMCSA-2001-10261-0004 | FMCSA | WSC - In the Matter of Sound Solutions - Request for Stay of Civil Penalty FMCSA-2001-10261 | In the Matter of The Center for Hearing, Speech and Language d/b/a Sound Solutions - Response to Chief Safety Officer's September 25, 2001, Order | Other | Response(s) | 2001-11-15T05:00:00Z | 2001 | 11 | 2001-11-15T05:00:00Z | 2001-11-16T04:59:59Z | 2024-11-08T04:17:19Z | 1 | 0 | 09000064802b64de | |
| FMCSA-2001-10261-0005 | FMCSA | WSC - In the Matter of Sound Solutions - Request for Stay of Civil Penalty FMCSA-2001-10261 | In the Matter of The Center for Hearing, Speech and Language d/b/a Sound Solutions - Petitioner's Response to FMCSA's October 26, 2001 Response | Other | Response(s) | 2001-11-15T05:00:00Z | 2001 | 11 | 2001-11-15T05:00:00Z | 2001-11-16T04:59:59Z | 2024-11-08T04:17:19Z | 1 | 0 | 09000064802b64df | |
| FMCSA-2001-10261-0003 | FMCSA | WSC - In the Matter of Sound Solutions - Request for Stay of Civil Penalty FMCSA-2001-10261 | In the Matter of Center for Hearing, Speech, and Language d/b/a Sound Solutions - Order | Other | Order | 2001-10-02T04:00:00Z | 2001 | 10 | 2001-10-02T04:00:00Z | 2001-10-03T03:59:59Z | 2024-11-08T04:17:19Z | 1 | 0 | 09000064802b64dd | |
| FMCSA-2001-10261-0002 | FMCSA | WSC - In the Matter of Sound Solutions - Request for Stay of Civil Penalty FMCSA-2001-10261 | In the Matter of Sound Solutions - Additional Information | Other | Additional Information | 2001-10-01T04:00:00Z | 2001 | 10 | 2001-10-01T04:00:00Z | 2001-10-02T03:59:59Z | 2024-11-08T04:17:19Z | 1 | 0 | 09000064802b64dc | |
| FMCSA-2001-10261-0001 | FMCSA | WSC - In the Matter of Sound Solutions - Request for Stay of Civil Penalty FMCSA-2001-10261 | In the Matter of Sound Solutions - Request for Stay of Civil Penalty | Other | Request | 2001-07-27T04:00:00Z | 2001 | 7 | 2001-07-27T04:00:00Z | 2001-07-28T03:59:59Z | 2024-11-08T04:17:18Z | 1 | 0 | 09000064802b64d7 |
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;