documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FMCSA-2008-0012" 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-2008-0012-0008 | FMCSA | MSC - In the Matter of Pioneer Drum & Bugle Corp & Color Guard Inc. - Field Administrator’s Consent to Respondent’s Request for Informal Hearing FMCSA-2008-0012 | In the Matter of Pioneer Drum & Bugle Corp & Color Guard, Inc. - Final Order | Other | Final Order | 2011-10-05T04:00:00Z | 2011 | 10 | 2011-10-05T04:00:00Z | 2024-11-12T05:04:40Z | 1 | 0 | 0900006480f4bbe9 | ||
| FMCSA-2008-0012-0007 | FMCSA | MSC - In the Matter of Pioneer Drum & Bugle Corp & Color Guard Inc. - Field Administrator’s Consent to Respondent’s Request for Informal Hearing FMCSA-2008-0012 | In the Matter of Pioneer Drum & Bugle Corps & Color Guard, Inc. | Other | Reply | 2011-04-21T04:00:00Z | 2011 | 4 | 2011-04-21T04:00:00Z | 2013-08-11T04:45:13Z | 0 | 0 | 0900006480c354dc | ||
| FMCSA-2008-0012-0006 | FMCSA | MSC - In the Matter of Pioneer Drum & Bugle Corp & Color Guard Inc. - Field Administrator’s Consent to Respondent’s Request for Informal Hearing FMCSA-2008-0012 | In the Matter of Pioneer Drum & Bugle Corp & Color Guard, Inc. - Interim Order Adopting Hearing Officer's Report and Recommendation | Other | Order | 2011-04-18T04:00:00Z | 2011 | 4 | 2011-04-18T04:00:00Z | 2024-11-12T04:59:49Z | 1 | 0 | 0900006480c2e13e | ||
| FMCSA-2008-0012-0005 | FMCSA | MSC - In the Matter of Pioneer Drum & Bugle Corp & Color Guard Inc. - Field Administrator’s Consent to Respondent’s Request for Informal Hearing FMCSA-2008-0012 | In the Matter of Pioneer Drum & Bugle Corps & Color Guard, Inc. - Hearing Officer's Report and Recommended Disposition | Other | Report | 2011-03-30T04:00:00Z | 2011 | 3 | 2011-03-30T04:00:00Z | 2013-07-27T23:48:29Z | 0 | 0 | 0900006480c10ed9 | ||
| FMCSA-2008-0012-0004 | FMCSA | MSC - In the Matter of Pioneer Drum & Bugle Corp & Color Guard Inc. - Field Administrator’s Consent to Respondent’s Request for Informal Hearing FMCSA-2008-0012 | In the Matter of Pioneer Drum & Bugle Corp & Color Guard Inc. dba Youth Group - Notice Of Reassignment | Other | Other | 2010-10-22T04:00:00Z | 2010 | 10 | 2010-10-22T04:00:00Z | 2024-11-12T04:55:19Z | 1 | 0 | 0900006480b756bd | ||
| FMCSA-2008-0012-0003 | FMCSA | MSC - In the Matter of Pioneer Drum & Bugle Corp & Color Guard Inc. - Field Administrator’s Consent to Respondent’s Request for Informal Hearing FMCSA-2008-0012 | In the Matter of Pioneer Drum & Bugle Corps & Color Guard Inc., dba Youth Group - Order Appointing Hearing Officer | Other | Order | 2008-04-11T04:00:00Z | 2008 | 4 | 2008-04-11T04:00:00Z | 2024-11-07T21:52:38Z | 1 | 0 | 09000064804a3a4e | ||
| FMCSA-2008-0012-0002 | FMCSA | MSC - In the Matter of Pioneer Drum & Bugle Corp & Color Guard Inc. - Field Administrator’s Consent to Respondent’s Request for Informal Hearing FMCSA-2008-0012 | In the Matter of Pioneer Drum & Bugle Corps & Color Guard Inc., dba Youth Group - Notice of Assignment of Proceeding | Notice | Notice of Assignment of Proceeding | 2008-04-11T04:00:00Z | 2008 | 4 | 2008-04-11T04:00:00Z | 2024-11-07T21:52:45Z | 1 | 0 | 09000064804a3a68 | ||
| FMCSA-2008-0012-0001 | FMCSA | MSC - In the Matter of Pioneer Drum & Bugle Corp & Color Guard Inc. - Field Administrator’s Consent to Respondent’s Request for Informal Hearing FMCSA-2008-0012 | In the Matter of Pioneer Drum & Bugle Corp & Color Guard Inc. Pioneer Drum & Bugle Corp & Color Guard Inc. - Field Administrator's Consent to Respondent's Request for Informal Hearing | Other | Consent | 2008-01-17T05:00:00Z | 2008 | 1 | 2008-01-17T05:00:00Z | 2024-11-11T21:37:38Z | 1 | 0 | 090000648039d0dd |
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;