documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "USCG-2009-0362" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, last_modified, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| USCG-2009-0362-0005 | USCG | Information Collection Request to Office of Management and Budget; OMB Control Numbers 1625-0014, 1625-0038, and 1625-0069 USCG-2009-0362 | Collection of Information Under Review by Office of Management and Budget: OMB Control Numbers: 1625-0014, 1625-0038, and 1625-0069 (Federal Register Publication) | Notice | Notice | 2009-10-15T04:00:00Z | 2009 | 10 | 2009-10-15T04:00:00Z | 2009-11-17T04:59:59Z | 2017-03-10T22:25:10Z | E9-24742 | 0 | 0 | 0900006480a421bc |
| USCG-2009-0362-0004 | USCG | Information Collection Request to Office of Management and Budget; OMB Control Numbers 1625-0014, 1625-0038, and 1625-0069 USCG-2009-0362 | 1625-0069: Ballast Water Management for Vessels with Ballast Tanks Entering U.S. Waters | Supporting & Related Material | 2009-06-08T04:00:00Z | 2009 | 6 | 2017-03-10T22:40:42Z | 0 | 0 | 09000064809c84b7 | ||||
| USCG-2009-0362-0003 | USCG | Information Collection Request to Office of Management and Budget; OMB Control Numbers 1625-0014, 1625-0038, and 1625-0069 USCG-2009-0362 | 1625-0038: Plan Approval and Records for Tank, Passenger, Cargo and Miscellaneous Vessels, Mobile Offshore Drilling Units, Nautical School Vessels and Oceanographic Research Vessels | Supporting & Related Material | 2009-06-08T04:00:00Z | 2009 | 6 | 2017-03-10T22:40:42Z | 0 | 0 | 09000064809c84b4 | ||||
| USCG-2009-0362-0002 | USCG | Information Collection Request to Office of Management and Budget; OMB Control Numbers 1625-0014, 1625-0038, and 1625-0069 USCG-2009-0362 | 1625-0014: Request for Designation and Exemption of Oceanographic Research Vessels | Supporting & Related Material | 2009-06-08T04:00:00Z | 2009 | 6 | 2017-03-10T22:40:42Z | 0 | 0 | 09000064809c8473 | ||||
| USCG-2009-0362-0001 | USCG | Information Collection Request to Office of Management and Budget; OMB Control Numbers 1625-0014, 1625-0038, and 1625-0069 USCG-2009-0362 | Information Collection Request to Office of Management and Budget; OMB Control Numbers: 1625-0014, 1625-0038, and 1625-0069 (Federal Register Publication) | Notice | Notice | 2009-06-04T04:00:00Z | 2009 | 6 | 2009-06-04T04:00:00Z | 2009-08-04T03:59:59Z | 2009-06-04T14:39:40Z | E9-12978 | 0 | 0 | 09000064809c4a93 |
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;