documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "USCG-2011-1162" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, 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-2011-1162-0004 | USCG | Tidal Energy Project, Cobscook Bay, Maine USCG-2011-1162 | Coast Guard Public Meeting, January 30, 2012 Summary LUBEC | Supporting & Related Material | 2012-03-02T05:00:00Z | 2012 | 3 | 2012-03-02T15:38:58Z | 0 | 0 | 0900006480fc70e5 | ||||
| USCG-2011-1162-0005 | USCG | Tidal Energy Project, Cobscook Bay, Maine USCG-2011-1162 | Coast Guard Public Meeting, January 31, 2012 Summary EASTPORT | Supporting & Related Material | 2012-03-02T05:00:00Z | 2012 | 3 | 2012-03-02T15:57:14Z | 0 | 0 | 0900006480fc8f16 | ||||
| USCG-2011-1162-0003 | USCG | Tidal Energy Project, Cobscook Bay, Maine USCG-2011-1162 | USCG/DHS - See Attachments | Other | 2012-03-02T05:00:00Z | 2012 | 3 | 2012-03-02T05:00:00Z | 2012-03-02T15:33:28Z | 0 | 0 | 0900006480fc8952 | |||
| USCG-2011-1162-0007 | USCG | Tidal Energy Project, Cobscook Bay, Maine USCG-2011-1162 | Public Meeting ORPC Lubec, January 30, 2012 | Supporting & Related Material | 2012-03-02T05:00:00Z | 2012 | 3 | 2012-03-02T16:22:56Z | 0 | 0 | 0900006480fc8f1a | ||||
| USCG-2011-1162-0006 | USCG | Tidal Energy Project, Cobscook Bay, Maine USCG-2011-1162 | Coast Guard Public Meeting, January 31, 2012 Summary EASTPORT | Supporting & Related Material | 2012-03-02T05:00:00Z | 2012 | 3 | 2012-03-02T16:11:21Z | 0 | 0 | 0900006480fc8f18 | ||||
| USCG-2011-1162-0002 | USCG | Tidal Energy Project, Cobscook Bay, Maine USCG-2011-1162 | Ocean Renewable Power Company; Tidal Energy Project: Cobscook Bay, ME (Federal Register Publication) | Notice | Request for Comments | 2012-02-06T05:00:00Z | 2012 | 2 | 2012-02-06T05:00:00Z | 2012-02-22T04:59:59Z | 2017-03-10T22:26:03Z | 2012-02547 | 0 | 0 | 0900006480fae365 |
| USCG-2011-1162-0001 | USCG | Tidal Energy Project, Cobscook Bay, Maine USCG-2011-1162 | Normand Laurent Laberge - Letter | Other | 2012-02-01T05:00:00Z | 2012 | 2 | 2012-02-01T05:00:00Z | 2017-03-10T22:28:32Z | 0 | 0 | 0900006480fab3fd |
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;