documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "USCG-2015-0472" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_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-2015-0472-0120 | USCG | None USCG-2015-0472 | The Secretary's Decision on the Deepwater Port License Application of Delfin LNG, LLC March 13, 2017 (MARAD ROD) | Supporting & Related Material | 2017-03-24T04:00:00Z | 2017 | 3 | 2017-03-24T16:44:51Z | 0 | 0 | 09000064825264b7 | ||||
| USCG-2015-0472-0119 | USCG | None USCG-2015-0472 | NMFS ESA Section 7 Letter of Concurrence: Formal Consultation not Required | Supporting & Related Material | 2017-03-10T05:00:00Z | 2017 | 3 | 2017-03-10T14:38:28Z | 0 | 0 | 09000064824ff448 | ||||
| USCG-2015-0472-0117 | USCG | None USCG-2015-0472 | USACE and DoD Emails to USCG: Comments on Delfin FEIS and Application | Supporting & Related Material | 2017-01-18T05:00:00Z | 2017 | 1 | 2017-01-18T16:30:06Z | 0 | 0 | 09000064824813ce | ||||
| USCG-2015-0472-0118 | USCG | None USCG-2015-0472 | Port Delfin Deepwater Port License Application and FEIS Final Public Hearings Dec 13, 2016 Cameron, LA and Dec 14, 2016 Beaumont ,TX | Supporting & Related Material | 2017-01-18T05:00:00Z | 2017 | 1 | 2017-01-18T16:27:45Z | 0 | 0 | 09000064824813f0 | ||||
| USCG-2015-0472-0116 | USCG | None USCG-2015-0472 | EPA Comments on Delfin Final Environmental Impact Statement | Supporting & Related Material | 2017-01-17T05:00:00Z | 2017 | 1 | 2017-01-17T18:20:51Z | 0 | 0 | 090000648247e4f7 | ||||
| USCG-2015-0472-0115 | USCG | None USCG-2015-0472 | Department of State Consultation Comments | Supporting & Related Material | 2017-01-17T05:00:00Z | 2017 | 1 | 2017-01-17T18:19:46Z | 0 | 0 | 090000648247e4f6 | ||||
| USCG-2015-0472-0113 | USCG | None USCG-2015-0472 | Choctaw Nation of Oklahoma email to USCG December 21, 2016 | Supporting & Related Material | 2017-01-03T05:00:00Z | 2017 | 1 | 2017-01-03T18:15:43Z | 0 | 0 | 0900006482447a33 |
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;