documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "USCG-2010-0062" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
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-2010-0062-0033 | USCG | Safety Zone; Annual Fleet Week Security Zone, Pier 66, Elliot Bay, WA USCG-2010-0062 | Quarter 3 (2015) | Supporting & Related Material | 2017-06-23T04:00:00Z | 2017 | 6 | 2017-07-07T20:17:03Z | 0 | 0 | 0900006482760228 | ||||
| USCG-2010-0062-0032 | USCG | Safety Zone; Annual Fleet Week Security Zone, Pier 66, Elliot Bay, WA USCG-2010-0062 | Safety Zone; Fleet Week Maritime Festival, 2016, Pier 66, Elliott Bay; Seattle, WA | Rule | Temporary Rule | 2016-07-19T04:00:00Z | 2016 | 7 | 2016-07-19T14:56:54Z | 2016-16979 | 0 | 0 | 09000064820c9ed4 | ||
| USCG-2010-0062-0031 | USCG | Safety Zone; Annual Fleet Week Security Zone, Pier 66, Elliot Bay, WA USCG-2010-0062 | Safety Zones: Fleet Week Maritime Festival, Pier 66, Elliott Bay; Seattle, WA (Federal Register Publication) | Rule | Temporary Rule | 2014-07-25T04:00:00Z | 2014 | 7 | 2014-07-25T04:00:00Z | 2014-07-25T14:18:30Z | 2014-17603 | 0 | 0 | 09000064817e1625 | |
| USCG-2010-0062-0030 | USCG | Safety Zone; Annual Fleet Week Security Zone, Pier 66, Elliot Bay, WA USCG-2010-0062 | Safety Zones: Fleet Week Maritime Festival, Pier 66 Elliott Bay, Seattle, WA (Federal Register P{ublication) (Notice of enforcement of regulation.) | Rule | Final Rule | 2012-06-15T04:00:00Z | 2012 | 6 | 2012-06-15T04:00:00Z | 2017-03-10T22:21:45Z | 2012-14545 | 0 | 0 | 090000648104c576 | |
| USCG-2010-0062-0029 | USCG | Safety Zone; Annual Fleet Week Security Zone, Pier 66, Elliot Bay, WA USCG-2010-0062 | FR: Safety Zones: Fleet Week Maritime Festival, Pier 66, Elliott Bay, Seattle, WA (Federal Register Publication) | Rule | Federal Register Publication | 2011-05-24T04:00:00Z | 2011 | 5 | 2011-05-24T04:00:00Z | 2017-03-10T22:21:12Z | 2011-12675 | 0 | 0 | 0900006480e30fa1 | |
| USCG-2010-0062-0016 | USCG | Safety Zone; Annual Fleet Week Security Zone, Pier 66, Elliot Bay, WA USCG-2010-0062 | SNPRM: Safety Zones: Fleet Week Maritime Festival, Pier 66, Elliot Bay, Seattle, WA (Federal Register Publication) | Notice | Notice of Proposed Rulemaking (NPRM) | 2010-11-24T05:00:00Z | 2010 | 11 | 2010-11-24T05:00:00Z | 2010-12-28T04:59:59Z | 2011-06-11T15:46:18Z | 2010-29422 | 0 | 0 | 0900006480ba2e03 |
| USCG-2010-0062-0001 | USCG | Safety Zone; Annual Fleet Week Security Zone, Pier 66, Elliot Bay, WA USCG-2010-0062 | NPRM: Safety Zones: Fleet Week Maritime Festival, Pier 66, Elliott Bay, Seattle, WA (Federal Register Publication) | Rule | Federal Register Publication | 2010-02-25T05:00:00Z | 2010 | 2 | 2010-02-25T05:00:00Z | 2010-05-27T03:59:59Z | 2017-03-10T22:20:37Z | 2010-03834 | 0 | 0 | 0900006480aae479 |
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;