documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "CPSC-2006-0057" and document_type = "Proposed Rule" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, comment_end_date, 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-2006-0057-0130 | CPSC | Portable Generators; Advance Notice of Proposed Rulemaking; Request for Comments and Information CPSC-2006-0057 | Safety Standard: Portable Generators | Proposed Rule | 2023-06-07T04:00:00Z | 2023 | 6 | 2023-06-07T04:00:00Z | 2023-06-21T03:59:59Z | 2024-03-09T02:00:30Z | 2023-11983 | 0 | 0 | 0900006485ad2b8d | |
| CPSC-2006-0057-0118 | CPSC | Portable Generators; Advance Notice of Proposed Rulemaking; Request for Comments and Information CPSC-2006-0057 | Safety Standard for Portable Generators | Proposed Rule | 2023-04-20T04:00:00Z | 2023 | 4 | 2023-04-20T04:00:00Z | 2023-06-21T03:59:59Z | 2023-06-21T01:01:19Z | 2023-07870 | 0 | 0 | 09000064859692ff | |
| CPSC-2006-0057-0047 | CPSC | Portable Generators; Advance Notice of Proposed Rulemaking; Request for Comments and Information CPSC-2006-0057 | Portable Generators; Notice of opportunity for oral presentation of comments | Proposed Rule | 2017-02-01T05:00:00Z | 2017 | 2 | 2017-02-01T05:00:00Z | 2017-03-02T04:59:59Z | 2017-03-02T14:02:12Z | 2017-02061 | 0 | 0 | 09000064824a3d37 | |
| CPSC-2006-0057-0036 | CPSC | Portable Generators; Advance Notice of Proposed Rulemaking; Request for Comments and Information CPSC-2006-0057 | Safety Standard for Portable Generators; Notice of Extension of Comment Period | Proposed Rule | 2016-12-13T05:00:00Z | 2016 | 12 | 2017-02-07T05:00:00Z | 2017-04-25T03:59:59Z | 2017-04-25T13:02:31Z | 2016-29845 | 0 | 0 | 09000064823fe8fe | |
| CPSC-2006-0057-0032 | CPSC | Portable Generators; Advance Notice of Proposed Rulemaking; Request for Comments and Information CPSC-2006-0057 | Safety Standard for Portable Generators | Proposed Rule | 2016-11-21T05:00:00Z | 2016 | 11 | 2016-11-21T05:00:00Z | 2017-02-07T04:59:59Z | 2017-02-07T02:01:59Z | 2016-26962 | 0 | 0 | 09000064823aa472 | |
| CPSC-2006-0057-0001 | CPSC | Portable Generators; Advance Notice of Proposed Rulemaking; Request for Comments and Information CPSC-2006-0057 | Portable Generators; Advance Notice of Proposed Rulemaking; Request for Comments and Information | Proposed Rule | 2006-12-12T05:00:00Z | 2006 | 12 | 2006-12-12T05:00:00Z | 2007-02-13T04:59:59Z | 2013-06-15T01:02:54Z | E6-21131 | 0 | 0 | 09000064801eb4a1 |
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;