documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "USCG-2013-0327" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- USCG 11
| 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-2013-0327-0011 | USCG | None USCG-2013-0327 | Special Local Regulation; Regattas and Marine Parades in the COTP Lake Michigan Zone- Chinatown Chamber of Commerce Dragon Boat Race, Chicago, IL | Rule | Temporary Rule | 2017-04-27T04:00:00Z | 2017 | 4 | 2017-05-02T02:14:18Z | 2017-08501 | 0 | 0 | 090000648257e142 | ||
| USCG-2013-0327-0010 | USCG | None USCG-2013-0327 | Special Local Regulations; Harborfest Dragon Boat Race, South Haven, MI | Rule | Temporary Rule | 2016-06-10T04:00:00Z | 2016 | 6 | 2016-06-10T14:21:15Z | 2016-13783 | 0 | 0 | 090000648202bfc8 | ||
| USCG-2013-0327-0009 | USCG | None USCG-2013-0327 | Special Local Regulation; Regattas and Marine Parades in the COTP Lake Michigan Zone- Chinatown Chamber of Commerce Dragon Boat Race, Chicago, IL | Rule | Temporary Rule | 2016-04-22T04:00:00Z | 2016 | 4 | 2016-04-22T13:49:14Z | 2016-09411 | 0 | 0 | 0900006481f82cd5 | ||
| USCG-2013-0327-0008 | USCG | None USCG-2013-0327 | Special Local Regulations: Chinatown Chamber of Commerce Dragon Boat Race, Chicago, IL (Federal Register Publication) | Rule | Notice of Interim Rule | 2015-06-29T04:00:00Z | 2015 | 6 | 2015-06-29T04:00:00Z | 2015-06-29T14:30:53Z | 2015-15930 | 0 | 0 | 0900006481b5ac3f | |
| USCG-2013-0327-0007 | USCG | None USCG-2013-0327 | Special Local Regulations: Chinatown Chamber of Commerce Dragon Boat Race, Chicago, IL (Federal Register Publication) (Notice of enforcement of regulation.) | Rule | Final Rule | 2014-06-27T04:00:00Z | 2014 | 6 | 2014-06-27T04:00:00Z | 2014-06-27T14:31:46Z | 2014-15122 | 0 | 0 | 090000648176f9a1 | |
| USCG-2013-0327-0006 | USCG | None USCG-2013-0327 | Regattas and Marine Parades: Captain of the Port Lake Michigan Zone (Federal register Publication) (Notice of enforcement of regulation.) | Rule | Final Rule | 2014-06-09T04:00:00Z | 2014 | 6 | 2014-06-09T04:00:00Z | 2014-06-09T15:25:38Z | 2014-13302 | 0 | 0 | 090000648172fccf | |
| USCG-2013-0327-0005 | USCG | None USCG-2013-0327 | FR: Special Local Regulations: Regattas and Marine Parades in the Captain of the Port Lake Michigan Zone (Federal Register Publication) | Rule | Final Rule | 2013-08-08T04:00:00Z | 2013 | 8 | 2013-08-08T04:00:00Z | 2017-03-10T22:22:33Z | 2013-19214 | 0 | 0 | 09000064813a4869 | |
| USCG-2013-0327-0004 | USCG | None USCG-2013-0327 | Environmental Checklist (5/21/2013) | Supporting & Related Material | 2013-07-04T04:00:00Z | 2013 | 7 | 2017-03-10T22:42:57Z | 0 | 0 | 0900006481352d6a | ||||
| USCG-2013-0327-0003 | USCG | None USCG-2013-0327 | Environmental Checklist (5/2/2013) | Supporting & Related Material | 2013-06-28T04:00:00Z | 2013 | 6 | 2017-03-10T22:42:53Z | 0 | 0 | 0900006481349851 | ||||
| USCG-2013-0327-0002 | USCG | None USCG-2013-0327 | TFR: Special Local Regulations: Summer Events; Captain of the Port Lake Michigan Zone (Federal Register Publication) | Rule | Temporary Rule | 2013-06-18T04:00:00Z | 2013 | 6 | 2013-06-18T04:00:00Z | 2017-03-10T22:22:23Z | 2013-14416 | 0 | 0 | 090000648132c99e | |
| USCG-2013-0327-0001 | USCG | None USCG-2013-0327 | NPRM: Special Local Regulations: Regattas and Marine Parades in the COTP Lake Michigan Zone (Federal Register Publication) | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2013-06-14T04:00:00Z | 2013 | 6 | 2013-06-14T04:00:00Z | 2013-07-16T03:59:59Z | 2017-03-10T22:26:33Z | 2013-14116 | 0 | 0 | 0900006481320032 |
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;