documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "USCG-2018-0565" 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
- USCG 7
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| USCG-2018-0565-0014 | USCG | None USCG-2018-0565 | Approval for Personal Flotation Devices (PFDs)/Adoption of ANSI/CAN/UL 12402- 5 AND -9 (Deregulatory Savings Analysis) | Supporting & Related Material | 2019-11-21T05:00:00Z | 2019 | 11 | 2019-11-21T16:10:27Z | 0 | 0 | 09000064841911bf | ||||
| USCG-2018-0565-0013 | USCG | None USCG-2018-0565 | Lifejacket Approval Harmonization; Notification of Availability | Notice | 2019-11-15T05:00:00Z | 2019 | 11 | 2019-11-15T05:00:00Z | 2019-11-15T14:38:27Z | 2019-24836 | 0 | 0 | 090000648416118b | ||
| USCG-2018-0565-0007 | USCG | None USCG-2018-0565 | Resolution 2009-83-01 - Changes to Approval Process for PFD's | Supporting & Related Material | 2018-09-06T04:00:00Z | 2018 | 9 | 2018-09-06T18:14:27Z | 0 | 0 | 09000064836b3a57 | ||||
| USCG-2018-0565-0001 | USCG | None USCG-2018-0565 | Lifejacket Approval Harmonization | Notice | Request for Comments | 2018-08-17T04:00:00Z | 2018 | 8 | 2018-08-17T04:00:00Z | 2018-10-17T03:59:59Z | 2018-10-17T01:09:20Z | 2018-17799 | 0 | 0 | 0900006483630816 |
| USCG-2018-0565-0003 | USCG | None USCG-2018-0565 | L A HARM POLICY 20180801- Signed | Supporting & Related Material | 2018-08-17T04:00:00Z | 2018 | 8 | 2018-08-17T15:51:02Z | 0 | 0 | 090000648362027b | ||||
| USCG-2018-0565-0002 | USCG | None USCG-2018-0565 | MEMORANDUM OF UNDERSTANDING | Supporting & Related Material | 2018-08-17T04:00:00Z | 2018 | 8 | 2018-08-17T15:50:54Z | 0 | 0 | 090000648362027a | ||||
| USCG-2018-0565-0004 | USCG | None USCG-2018-0565 | Approval for Personal Flotation Devices (PFDs)/Adoption of ANSI/CAN/UL 12402-5 AND -9 (Deregulatory Savings Analysis)- June 2018 | Supporting & Related Material | 2018-08-17T04:00:00Z | 2018 | 8 | 2018-08-17T15:51:10Z | 0 | 0 | 090000648362027c |
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;