documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "CPSC", document_type = "Rule" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| CPSC-2008-0051-0001 | CPSC | Labeling Requirement for Toy and Game Advertisements; Final Rule CPSC-2008-0051 | Labeling Requirement for Toy and Game Advertisements; Final Rule | Rule | 2008-12-24T05:00:00Z | 2008 | 12 | 2008-12-24T05:00:00Z | 2011-04-07T14:42:50Z | E8–26964 | 0 | 0 | 09000064807f8b3c | ||
| CPSC-2008-0048-0001 | CPSC | Exemption From Classification as Banned Hazardous Substance; Exemption for Boston Billow Nursing Pillow and Substantially Similar Nursing Pillows CPSC-2008-0048 | Exemption From Classification as Banned Hazardous Substance; Exemption for Boston Billow Nursing Pillow and Substantially Similar Nursing Pillows | Rule | 2008-12-19T05:00:00Z | 2008 | 12 | 2008-12-19T05:00:00Z | 2011-04-07T14:37:24Z | E8-30248 | 0 | 0 | 09000064807e2cb4 | ||
| CPSC-2008-0047-0001 | CPSC | Ban of Lead-Containing Paint and Certain Consumer Products Bearing Lead-Containing Paint CPSC-2008-0047 | Ban of Lead-Containing Paint and Certain Consumer Products Bearing Lead-Containing Paint | Rule | 2008-12-19T05:00:00Z | 2008 | 12 | 2008-12-19T05:00:00Z | 2011-04-07T14:35:29Z | E8-30238 | 0 | 0 | 09000064807e2c94 | ||
| CPSC-2008-0044-0001 | CPSC | Information Disclosure Under Section 6(b) of the Consumer Product Safety Act CPSC-2008-0044 | Information Disclosure Under Section 6(b) of the Consumer Product Safety Act | Rule | 2008-11-28T05:00:00Z | 2008 | 11 | 2008-11-28T05:00:00Z | 2011-04-07T14:26:07Z | E8-28200 | 0 | 0 | 09000064807c3a42 | ||
| CPSC-2008-0043-0001 | CPSC | Labeling Requirement for Toy and Game Advertisements; Correction CPSC-2008-0043 | Labeling Requirement for Toy and Game Advertisements; Correction | Rule | 2008-11-25T05:00:00Z | 2008 | 11 | 2008-11-25T05:00:00Z | 2011-04-06T17:50:52Z | Z8-26964 | 0 | 0 | 09000064807bf14b | ||
| CPSC-2008-0040-0001 | CPSC | Certificates of Compliance CPSC-2008-0040 | Certificates of Compliance | Rule | 2008-11-18T05:00:00Z | 2008 | 11 | 2008-11-18T05:00:00Z | 2011-04-06T17:37:15Z | E8-27356 | 0 | 0 | 09000064807af90a | ||
| CPSC-2008-0039-0001 | CPSC | Final Rule: Standard for All Terrain Vehicles CPSC-2008-0039 | Final Rule: Standard for All Terrain Vehicles | Rule | 2008-11-14T05:00:00Z | 2008 | 11 | 2008-11-14T05:00:00Z | 2011-04-06T17:35:38Z | E8-26974 | 0 | 0 | 09000064807a8ee7 | ||
| CPSC-2008-0037-0001 | CPSC | Standard for the Flammability of Clothing Textiles; Corrections CPSC-2008-0037 | Standard for the Flammability of Clothing Textiles; Corrections | Rule | 2008-10-20T04:00:00Z | 2008 | 10 | 2008-10-20T04:00:00Z | 2011-04-06T17:12:46Z | E8-24712 | 0 | 0 | 090000648076a47b | ||
| CPSC-2008-0006-0001 | CPSC | Standard for the Flammability of Clothing Textiles CPSC-2008-0006 | Standard for the Flammability of Clothing Textiles | Rule | 2008-03-25T04:00:00Z | 2008 | 3 | 2008-03-25T04:00:00Z | 2011-04-06T14:46:31Z | E8-05569 | 0 | 0 | 0900006480407930 | ||
| CPSC-2008-0004-0001 | CPSC | Final Rule: Standard for the Flammability (Open Flame) of Mattress Sets; Correction CPSC-2008-0004 | Final Rule: Standard for the Flammability (Open Flame) of Mattress Sets; Correction | Rule | 2008-02-06T05:00:00Z | 2008 | 2 | 2008-02-06T05:00:00Z | 2011-04-06T14:40:48Z | E8-02027 | 0 | 0 | 09000064803a9266 |
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;