documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "CPSC-2019-0033" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- CPSC 8
| 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-2019-0033-0013 | CPSC | CPSC Forum on Crib Bumpers CPSC-2019-0033 | Pediatrics 2010 | Supporting & Related Material | 2020-02-05T05:00:00Z | 2020 | 2 | 2020-02-05T19:12:30Z | 0 | 0 | 090000648432e3d5 | ||||
| CPSC-2019-0033-0011 | CPSC | CPSC Forum on Crib Bumpers CPSC-2019-0033 | Special Document Section Crib Bumpers | Supporting & Related Material | 2020-02-05T05:00:00Z | 2020 | 2 | 2020-02-05T19:08:04Z | 0 | 0 | 090000648432ea00 | ||||
| CPSC-2019-0033-0008 | CPSC | CPSC Forum on Crib Bumpers CPSC-2019-0033 | Crib Bumper Forum - Additional Information for the Record | Supporting & Related Material | 2020-02-05T05:00:00Z | 2020 | 2 | 2020-02-05T18:41:00Z | 0 | 0 | 090000648432e731 | ||||
| CPSC-2019-0033-0009 | CPSC | CPSC Forum on Crib Bumpers CPSC-2019-0033 | The Journal of Pediatrics | Supporting & Related Material | 2020-02-05T05:00:00Z | 2020 | 2 | 2020-02-05T18:48:56Z | 0 | 0 | 090000648432e2f1 | ||||
| CPSC-2019-0033-0012 | CPSC | CPSC Forum on Crib Bumpers CPSC-2019-0033 | Pediatrics 2013 | Supporting & Related Material | 2020-02-05T05:00:00Z | 2020 | 2 | 2020-02-05T19:10:24Z | 0 | 0 | 090000648432e3d9 | ||||
| CPSC-2019-0033-0010 | CPSC | CPSC Forum on Crib Bumpers CPSC-2019-0033 | Klein-Schwartz et al 2010 Pharmacoepidemiology and Drug Safety | Supporting & Related Material | 2020-02-05T05:00:00Z | 2020 | 2 | 2020-02-05T18:53:33Z | 0 | 0 | 090000648432e2f3 | ||||
| CPSC-2019-0033-0005 | CPSC | CPSC Forum on Crib Bumpers CPSC-2019-0033 | 1-29-2020 Crib Bumper Forum Supplemental Information | Supporting & Related Material | 2020-01-30T05:00:00Z | 2020 | 1 | 2020-01-30T13:06:26Z | 0 | 0 | 090000648430a587 | ||||
| CPSC-2019-0033-0001 | CPSC | CPSC Forum on Crib Bumpers CPSC-2019-0033 | CPSC Forum on Crib Bumpers | Notice | 2019-11-29T05:00:00Z | 2019 | 11 | 2019-11-29T05:00:00Z | 2020-02-26T04:59:59Z | 2020-02-27T02:02:41Z | 2019-25890 | 0 | 0 | 09000064841c8ddf |
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;