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 = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_date, posted_month, 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-2007-0034-0001 | CPSC | Semiannual Regulatory Agenda - Fall 2007 CPSC-2007-0034 | Semiannual Regulatory Agenda - Fall 2007 | Rule | NA | 2007-12-10T05:00:00Z | 2007 | 12 | 2011-04-05T20:36:58Z | 0 | 0 | 0900006480375ac9 | |||
| CPSC-2007-0034-0002 | CPSC | Semiannual Regulatory Agenda - Fall 2007 CPSC-2007-0034 | Regulatory Plan - Fall 2007 | Rule | NA | 2007-12-10T05:00:00Z | 2007 | 12 | 2011-04-05T20:37:26Z | 0 | 0 | 0900006480375aca | |||
| CPSC-2007-0032-0001 | CPSC | Technical Amendment to the Flammability Standards for Carpets and Rugs CPSC-2007-0032 | Technical Amendment to the Flammability Standards for Carpets and Rugs | Rule | 2007-10-26T04:00:00Z | 2007 | 10 | 2007-10-26T04:00:00Z | 2011-04-05T20:33:33Z | E7-20666 | 0 | 0 | 0900006480356a9b | ||
| CPSC-2007-0030-0001 | CPSC | Safety Standard for Automatic Residential Garage Door Operators CPSC-2007-0030 | Safety Standard for Automatic Residential Garage Door Operators | Rule | 2007-09-27T04:00:00Z | 2007 | 9 | 2007-09-27T04:00:00Z | 2011-04-05T20:30:42Z | E7-18846 | 0 | 0 | 09000064802a3b61 | ||
| CPSC-2007-0018-0001 | CPSC | Standard for the Flammability of Childrens Sleepwear: Sizes 0 Through 6X; Correction CPSC-2007-0018 | Standard for the Flammability of Childrens Sleepwear: Sizes 0 Through 6X; Correction | Rule | 2007-03-23T04:00:00Z | 2007 | 3 | 2007-03-23T04:00:00Z | 2011-04-05T20:13:03Z | E7-05303 | 0 | 0 | 0900006480218ad7 | ||
| CPSC-2007-0005-0001 | CPSC | Portable Generators; Final Rule; Labeling Requirements CPSC-2007-0005 | Portable Generators; Final Rule; Labeling Requirements | Rule | 2007-01-18T05:00:00Z | 2007 | 1 | 2007-01-18T05:00:00Z | 2011-04-05T18:54:28Z | 07-00193 | 0 | 0 | 09000064801f54e0 | ||
| CPSC-2007-0002-0001 | CPSC | Portable Generators; Final Rule; Labeling Requirements CPSC-2007-0002 | Portable Generators; Final Rule; Labeling Requirements | Rule | 2007-01-12T05:00:00Z | 2007 | 1 | 2007-01-12T05:00:00Z | 2011-04-05T18:46:27Z | 07-00080 | 0 | 0 | 09000064801f4039 |
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;