documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "CPSC", document_type = "Rule" and posted_year = 2009 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| CPSC-2009-0039-0021 | CPSC | Requirements for Consumer Registration of Durable Infant or Toddler Products CPSC-2009-0039 | Requirements for Consumer Registration of Durable Infant or Toddler Products; Final Rule | Rule | 2009-12-29T05:00:00Z | 2009 | 12 | 2009-12-29T05:00:00Z | 2010-01-06T17:37:55Z | E9-30485 | 0 | 0 | 0900006480a73217 | ||
| CPSC-2009-0068-0001 | CPSC | Civil Penalty Factors CPSC-2009-0068 | Civil Penalty Factors | Rule | 2009-09-01T04:00:00Z | 2009 | 9 | 2009-09-01T04:00:00Z | 2009-10-02T03:59:59Z | 2009-09-08T19:45:21Z | E9-20591 | 0 | 0 | 0900006480a1a43b | |
| CPSC-2009-0002-0002 | CPSC | Children's Products Containing Lead: Proposed Determinations Regarding Lead Content Limits on Certain Materials or Products CPSC-2009-0002 | Children's Products Containing Lead; Determinations Regarding Lead Content Limits on Certain Materials or Products | Rule | 2009-08-26T04:00:00Z | 2009 | 8 | 2009-08-26T04:00:00Z | 2009-08-31T20:16:42Z | E9-20589 | 0 | 0 | 0900006480a12ee4 | ||
| CPSC-2009-0001-0002 | CPSC | Children's Products Containing Lead: Interpretative Rule on Inaccessible Component Parts CPSC-2009-0001 | Children's Products Containing Lead; Interpretative Rule on Inaccessible Component Parts | Rule | 2009-08-07T04:00:00Z | 2009 | 8 | 2009-08-07T04:00:00Z | 2009-08-31T20:18:38Z | E9-18852 | 0 | 0 | 0900006480a0321b | ||
| CPSC-2009-0037-0001 | CPSC | Labeling Amendment of Blasting Caps CPSC-2009-0037 | Labeling Amendment of Blasting Caps | Rule | 2009-06-09T04:00:00Z | 2009 | 6 | 2009-06-09T04:00:00Z | 2009-06-10T15:24:15Z | E9-13365 | 0 | 0 | 09000064809c9e2e | ||
| CPSC-2009-0004-0002 | CPSC | Children's Products Containing Lead: Proposed Procedures and Requirements for a Commission Determination or Exclusion CPSC-2009-0004 | Commission Determination or Exclusion: Children's Products Containing Lead | Rule | 2009-03-11T04:00:00Z | 2009 | 3 | 2009-03-11T04:00:00Z | 2011-04-19T14:59:48Z | E9-05075 | 0 | 0 | 0900006480905035 | ||
| CPSC-2009-0007-0001 | CPSC | Children's Products Containing Lead; Exemptions for Certain Electronic Devices CPSC-2009-0007 | Children | Rule | 2009-02-12T05:00:00Z | 2009 | 2 | 2009-02-12T05:00:00Z | 2009-03-17T03:59:59Z | 2010-01-26T16:44:09Z | E9-03025 | 0 | 0 | 09000064808544d1 |
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;