documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "CPSC-2006-0057" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, 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-2006-0057-0100 | CPSC | Portable Generators; Advance Notice of Proposed Rulemaking; Request for Comments and Information CPSC-2006-0057 | Notice of Availability: Plan To Evaluate CO Mitigation Requirements for Portable Generators | Notice | 2019-07-09T04:00:00Z | 2019 | 7 | 2019-07-09T04:00:00Z | 2019-09-10T03:59:59Z | 2019-09-11T01:03:40Z | 2019-14510 | 0 | 0 | 0900006483d6d4c8 | |
| CPSC-2006-0057-0098 | CPSC | Portable Generators; Advance Notice of Proposed Rulemaking; Request for Comments and Information CPSC-2006-0057 | CHAB Letter to Joseph Harding 05-01-2019 (003) | Supporting & Related Material | 2019-05-03T04:00:00Z | 2019 | 5 | 2019-05-03T17:00:35Z | 0 | 0 | 0900006483c301e1 | ||||
| CPSC-2006-0057-0099 | CPSC | Portable Generators; Advance Notice of Proposed Rulemaking; Request for Comments and Information CPSC-2006-0057 | CHAB Letter to Joseph Harding 05-01-2019 (003) | Supporting & Related Material | 2019-05-03T04:00:00Z | 2019 | 5 | 2019-05-03T17:02:20Z | 0 | 0 | 0900006483c30013 | ||||
| CPSC-2006-0057-0097 | CPSC | Portable Generators; Advance Notice of Proposed Rulemaking; Request for Comments and Information CPSC-2006-0057 | PGMA Letter to CHAB Re Portable Generators CO ShutOff Systems 04-26-2019 (003) | Supporting & Related Material | 2019-05-03T04:00:00Z | 2019 | 5 | 2019-05-03T16:37:38Z | 0 | 0 | 0900006483c2f1b1 | ||||
| CPSC-2006-0057-0095 | CPSC | Portable Generators; Advance Notice of Proposed Rulemaking; Request for Comments and Information CPSC-2006-0057 | PGMA Letter to CHAB 11-15-2018 | Supporting & Related Material | 2019-04-12T04:00:00Z | 2019 | 4 | 2019-04-12T13:06:32Z | 0 | 0 | 0900006483b8a3b5 | ||||
| CPSC-2006-0057-0094 | CPSC | Portable Generators; Advance Notice of Proposed Rulemaking; Request for Comments and Information CPSC-2006-0057 | CHAB Letter to Under Secretary Copan 12-3-2018 | Supporting & Related Material | 2019-04-12T04:00:00Z | 2019 | 4 | 2019-04-12T13:04:07Z | 0 | 0 | 0900006483b8a638 | ||||
| CPSC-2006-0057-0096 | CPSC | Portable Generators; Advance Notice of Proposed Rulemaking; Request for Comments and Information CPSC-2006-0057 | Response to CHAB Letter re PGMA 3-21-2019 | Supporting & Related Material | 2019-04-12T04:00:00Z | 2019 | 4 | 2019-04-12T13:09:06Z | 0 | 0 | 0900006483b8a6a4 |
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;