documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "CPSC-2024-0039" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- CPSC 5
| 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-2024-0039-0150 | CPSC | Notice of Proposed Rulemaking: Requirements for Neck Floats CPSC-2024-0039 | Mandatory Toy Safety Standards: Requirements for Neck Floats; Correction | Rule | 2026-01-16T05:00:00Z | 2026 | 1 | 2026-01-16T05:00:00Z | 2026-01-16T18:12:58Z | 2026-00895 | 0 | 0 | 09000064b915b386 | ||
| CPSC-2024-0039-0149 | CPSC | Notice of Proposed Rulemaking: Requirements for Neck Floats CPSC-2024-0039 | Safety Standard: Neck Floats | Rule | 2025-12-15T05:00:00Z | 2025 | 12 | 2025-12-15T05:00:00Z | 2025-12-15T18:18:09Z | 2025-22827 | 0 | 0 | 09000064b90d33d4 | ||
| CPSC-2024-0039-0148 | CPSC | Notice of Proposed Rulemaking: Requirements for Neck Floats CPSC-2024-0039 | Q242484.MeetingMinutes.REVS | Supporting & Related Material | 2025-03-12T04:00:00Z | 2025 | 3 | 2025-03-12T20:34:56Z | 0 | 0 | 090000648693596e | ||||
| CPSC-2024-0039-0002 | CPSC | Notice of Proposed Rulemaking: Requirements for Neck Floats CPSC-2024-0039 | Safety Standard: Requirements for Neck Floats | Proposed Rule | 2024-11-20T05:00:00Z | 2024 | 11 | 2024-11-20T05:00:00Z | 2025-01-22T04:59:59Z | 2025-01-23T02:00:51Z | 2024-25446 | 0 | 0 | 090000648682a545 | |
| CPSC-2024-0039-0001 | CPSC | Notice of Proposed Rulemaking: Requirements for Neck Floats CPSC-2024-0039 | Do Not Use Baby Neck Floats Due to the Risk of Death or Injury_ FDA Safety Communication _ FDA | Supporting & Related Material | 2024-10-30T04:00:00Z | 2024 | 10 | 2024-10-31T00:34:00Z | 0 | 0 | 09000064867e9894 |
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;