documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "BOEM-2017-0016" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| BOEM-2017-0016-0015 | BOEM | Information Collections BOEM-2017-0016 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Prospecting for Minerals Other than Oil, Gas, and Sulphur on the Outer Continental Shelf and Authorizations of Noncommercial Geological and Geophysical Activities | Notice | 2014-12-30T05:00:00Z | 2014 | 12 | 2014-12-30T05:00:00Z | 2015-03-03T04:59:59Z | 2017-03-16T15:03:49Z | 2014-30559 | 0 | 0 | 0900006481999c91 | |
| BOEM-2017-0016-0018 | BOEM | Information Collections BOEM-2017-0016 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Geological and Geophysical Explorations of the Outer Continental Shelf | Notice | 2014-12-17T05:00:00Z | 2014 | 12 | 2014-12-17T05:00:00Z | 2015-01-17T04:59:59Z | 2017-03-16T16:25:59Z | 2014-29564 | 0 | 0 | 090000648197e88a | |
| BOEM-2017-0016-0016 | BOEM | Information Collections BOEM-2017-0016 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Plans and Information | Notice | 2014-11-07T05:00:00Z | 2014 | 11 | 2014-11-07T05:00:00Z | 2014-12-09T04:59:59Z | 2017-03-16T15:31:25Z | 2014-26464 | 0 | 0 | 090000648191e970 | |
| BOEM-2017-0016-0010 | BOEM | Information Collections BOEM-2017-0016 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Leasing of Minerals Other than Oil, Gas, and Sulphur in the Outer Continental Shelf | Notice | 2014-09-08T04:00:00Z | 2014 | 9 | 2014-09-08T04:00:00Z | 2014-10-09T03:59:59Z | 2017-03-15T18:43:50Z | 2014-21296 | 0 | 0 | 0900006481863456 | |
| BOEM-2017-0016-0011 | BOEM | Information Collections BOEM-2017-0016 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Geological and Geophysical Explorations of the Outer Continental Shelf | Notice | 2014-08-22T04:00:00Z | 2014 | 8 | 2014-08-22T04:00:00Z | 2014-10-22T03:59:59Z | 2017-03-15T18:44:35Z | 2014-19980 | 0 | 0 | 090000648183b381 | |
| BOEM-2017-0016-0012 | BOEM | Information Collections BOEM-2017-0016 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Social Indicators in Coastal Alaska; Arctic Communities Survey | Notice | 2014-07-30T04:00:00Z | 2014 | 7 | 2014-07-30T04:00:00Z | 2014-08-30T03:59:59Z | 2017-03-15T18:45:17Z | 2014-17929 | 0 | 0 | 09000064817ed58d | |
| BOEM-2017-0016-0013 | BOEM | Information Collections BOEM-2017-0016 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Atlantic Offshore Wind Energy Development: Public Attitudes, Values, and Implications for Tourism and Recreation | Notice | 2014-07-01T04:00:00Z | 2014 | 7 | 2014-07-01T04:00:00Z | 2014-09-03T03:59:59Z | 2017-03-15T18:45:56Z | 2014-15346 | 0 | 0 | 090000648177864f |
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;