documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "USCG-2011-0357" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- USCG 6
| 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-2011-0357-0016 | USCG | Cruise Vessel Safety and Security Act of 2010, Available Technology USCG-2011-0357 | Environmental Checklist for Cruise Vessel Security and Safety Act of 20 I 0; Implementation | Supporting & Related Material | 2015-01-23T05:00:00Z | 2015 | 1 | 2015-01-23T18:14:17Z | 0 | 0 | 09000064819d7ed6 | ||||
| USCG-2011-0357-0014 | USCG | Cruise Vessel Safety and Security Act of 2010, Available Technology USCG-2011-0357 | Cruise Vessel Security and Safety Act; Implementation (Federal Register Publication) | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2015-01-16T05:00:00Z | 2015 | 1 | 2015-01-16T05:00:00Z | 2015-04-17T03:59:59Z | 2015-04-17T02:01:42Z | 2015-00464 | 0 | 0 | 09000064819cdd04 |
| USCG-2011-0357-0013 | USCG | Cruise Vessel Safety and Security Act of 2010, Available Technology USCG-2011-0357 | 10 FEB 12 USCG-ICV Meeting Summary | Supporting & Related Material | 2012-03-01T05:00:00Z | 2012 | 3 | 2017-03-10T22:42:39Z | 0 | 0 | 0900006480fcab18 | ||||
| USCG-2011-0357-0012 | USCG | Cruise Vessel Safety and Security Act of 2010, Available Technology USCG-2011-0357 | USCG ICVA Meeting Summary | Supporting & Related Material | 2011-11-04T04:00:00Z | 2011 | 11 | 2011-11-04T18:41:18Z | 0 | 0 | 0900006480f6411c | ||||
| USCG-2011-0357-0002 | USCG | Cruise Vessel Safety and Security Act of 2010, Available Technology USCG-2011-0357 | Cruise Vessel Safety and Security Act of 2010: Available Technology (Federal Register Publication) | Notice | Notice | 2011-05-31T04:00:00Z | 2011 | 5 | 2011-05-31T04:00:00Z | 2017-03-10T22:25:40Z | 2011-13437 | 0 | 0 | 0900006480e353bd | |
| USCG-2011-0357-0001 | USCG | Cruise Vessel Safety and Security Act of 2010, Available Technology USCG-2011-0357 | Cruise Vessel Safety and Security Act of 2010, Available Technology (Federal Register Publication) | Notice | Notice | 2011-05-25T04:00:00Z | 2011 | 5 | 2011-05-25T04:00:00Z | 2011-07-26T03:59:59Z | 2017-03-10T22:25:40Z | 2011-12988 | 0 | 0 | 0900006480e31ae3 |
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;