documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "CPSC-2010-0018" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, withdrawn, 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-2010-0018-0008 | CPSC | Virginia Graeme Baker Pool and Spa Safety Act; Public Accommodation CPSC-2010-0018 | Virginia Graeme Baker Pool and Spa Safety Act; Incorporation by Reference of Successor Standard | Rule | 2011-08-05T04:00:00Z | 2011 | 8 | 2011-08-05T04:00:00Z | 2015-07-16T19:08:44Z | 2011-19861 | 0 | 0 | 0900006480ed7d3e | ||
| CPSC-2010-0018-0007 | CPSC | Virginia Graeme Baker Pool and Spa Safety Act; Public Accommodation CPSC-2010-0018 | Virginia Graeme Baker Pool and Spa Safety Act; Public Accommodation; Withdrawal | Proposed Rule | 2010-10-22T04:00:00Z | 2010 | 10 | 2010-10-22T04:00:00Z | 2015-07-16T19:08:38Z | 2010-26521 | 0 | 0 | 0900006480b7520d | ||
| CPSC-2010-0018-0006 | CPSC | Virginia Graeme Baker Pool and Spa Safety Act; Public Accommodation CPSC-2010-0018 | Virginia Graeme Baker Pool and Spa Safety Act; Interpretation of Unblockable Drain | Rule | 2010-04-27T04:00:00Z | 2010 | 4 | 2010-04-27T04:00:00Z | 2010-05-11T14:59:34Z | 2010-08160 | 0 | 0 | 0900006480ae1a66 | ||
| CPSC-2010-0018-0002 | CPSC | Virginia Graeme Baker Pool and Spa Safety Act; Public Accommodation CPSC-2010-0018 | Virginia Graeme Baker Pool and Spa Safety Act; Public Accommodation | Proposed Rule | 2010-03-15T04:00:00Z | 2010 | 3 | 2010-03-15T04:00:00Z | 2010-04-15T03:59:59Z | 2010-03-17T16:51:24Z | 2010-05130 | 0 | 0 | 0900006480abd389 | |
| CPSC-2010-0018-0001 | CPSC | Virginia Graeme Baker Pool and Spa Safety Act; Public Accommodation CPSC-2010-0018 | Meetings; Sunshine Act | Notice | 2010-03-12T00:00:00Z | 2010 | 3 | 2010-03-17T16:59:06Z | 0 | 1 | 0900006480abc22e |
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;