documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "USCG-2012-0375" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, posted_date (date), comment_start_date (date), last_modified (date)
document_type 2
agency_id 1
- USCG 9
| 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-2012-0375-0009 | USCG | Safety Zone; Annual Events requiring Safety Zones in Milwaukee Harbor, Milwaukee, WI USCG-2012-0375 | Safety Zones: Milwaukee Harbor, Milwaukee, WISafety Zone; Milwaukee Harbor, Milwaukee, Wisconsin | Rule | Temporary Rule | 2016-06-06T04:00:00Z | 2016 | 6 | 2016-06-06T14:49:24Z | 2016-13339 | 0 | 0 | 09000064820143d9 | ||
| USCG-2012-0375-0008 | USCG | Safety Zone; Annual Events requiring Safety Zones in Milwaukee Harbor, Milwaukee, WI USCG-2012-0375 | Safety Zones: Milwaukee Harbor, Milwaukee, WI (Federal Register Publication) (Notice of enforcement of regulation.) | Rule | Final Rule | 2015-06-12T04:00:00Z | 2015 | 6 | 2015-06-12T04:00:00Z | 2015-06-12T14:35:57Z | 2015-14447 | 0 | 0 | 0900006481b3032a | |
| USCG-2012-0375-0007 | USCG | Safety Zone; Annual Events requiring Safety Zones in Milwaukee Harbor, Milwaukee, WI USCG-2012-0375 | Safety Zone, Milwaukee Harbor, Milwaukee, WI | Supporting & Related Material | 2014-12-23T05:00:00Z | 2014 | 12 | 2014-12-23T16:11:15Z | 0 | 0 | 090000648198cb1a | ||||
| USCG-2012-0375-0006 | USCG | Safety Zone; Annual Events requiring Safety Zones in Milwaukee Harbor, Milwaukee, WI USCG-2012-0375 | Safety Zones: Milwaukee Harbor, Milwaukee, WI (Federal Register Publication) (Notice of enforcement of regulation.) | Rule | Final Rule | 2014-06-05T04:00:00Z | 2014 | 6 | 2014-06-05T04:00:00Z | 2014-06-05T14:39:03Z | 2014-13147 | 0 | 0 | 090000648172a9b5 | |
| USCG-2012-0375-0005 | USCG | Safety Zone; Annual Events requiring Safety Zones in Milwaukee Harbor, Milwaukee, WI USCG-2012-0375 | Safety Zones: Milwaukee Harbor, Milwaukee, WI (Federal Register Publication) ( Notice of enforcement of regulation.) | Rule | Final Rule | 2013-06-21T04:00:00Z | 2013 | 6 | 2013-06-21T04:00:00Z | 2017-03-10T22:22:24Z | 2013-14801 | 0 | 0 | 0900006481337682 | |
| USCG-2012-0375-0004 | USCG | Safety Zone; Annual Events requiring Safety Zones in Milwaukee Harbor, Milwaukee, WI USCG-2012-0375 | Safety Zones: Milwaukee Harbor, Milwaukee, WI (Federal Register Publication) (Notice of enforcement of regulation.) | Rule | Final Rule | 2013-05-16T04:00:00Z | 2013 | 5 | 2013-05-16T04:00:00Z | 2017-03-10T22:22:18Z | 2013-11626 | 0 | 0 | 09000064812e7846 | |
| USCG-2012-0375-0003 | USCG | Safety Zone; Annual Events requiring Safety Zones in Milwaukee Harbor, Milwaukee, WI USCG-2012-0375 | Safety Zones: Annual Events Requiring Safety Zones in Milwaukee Harbor, Milwaukee, WI (Federal Register Publication) (Notice of enforcement of regulation.) | Rule | Final Rule | 2012-08-20T04:00:00Z | 2012 | 8 | 2012-08-20T04:00:00Z | 2017-03-10T22:21:56Z | 2012-20346 | 0 | 0 | 09000064810e48da | |
| USCG-2012-0375-0001 | USCG | Safety Zone; Annual Events requiring Safety Zones in Milwaukee Harbor, Milwaukee, WI USCG-2012-0375 | Safety Zones: Milwaukee Harbor, Milwaukee, WI (Federal Register Publication) | Rule | Final Rule | 2012-05-11T04:00:00Z | 2012 | 5 | 2012-05-11T04:00:00Z | 2012-05-11T18:28:25Z | 2012-11496 | 0 | 0 | 090000648100adcd | |
| USCG-2012-0375-0002 | USCG | Safety Zone; Annual Events requiring Safety Zones in Milwaukee Harbor, Milwaukee, WI USCG-2012-0375 | Safety Zone; Milwaukee Harbor, Milwaukee, WI | Rule | 2012-05-11T04:00:00Z | 2012 | 5 | 2012-05-11T04:00:00Z | 2012-05-11T18:32:12Z | 2012-11494 | 0 | 0 | 090000648100ade1 |
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;