documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FS-2019-0003" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FS-2019-0003-0053 | FS | Archived NEPA Notices 2011-2015 FS-2019-0003 | Subsistence Management Program for Public Lands in Alaska; Rural Determination Process | Notice | General Notice | 2012-12-31T05:00:00Z | 2012 | 12 | 2012-12-31T05:00:00Z | 2013-11-02T03:59:59Z | 2019-06-11T19:55:31Z | 2012-31359 | 0 | 0 | 09000064811a05c6 |
| FS-2019-0003-0019 | FS | Archived NEPA Notices 2011-2015 FS-2019-0003 | Environmental Impact Statements; Availability, etc.: Okanogan-Wenatchee National Forest, Okanogan County, WA, Bannon, Aeneas, Revis, and Tunk Grazing Allotments | Notice | General Notice | 2012-11-23T05:00:00Z | 2012 | 11 | 2012-11-23T05:00:00Z | 2013-01-08T04:59:59Z | 2019-04-05T15:11:46Z | 2012-28420 | 0 | 0 | 0900006481171a08 |
| FS-2019-0003-0026 | FS | Archived NEPA Notices 2011-2015 FS-2019-0003 | Environmental Impact Statements; Availability, etc.: San Bernardino National Forest, Mountaintop Ranger District, CA, Santa Ana Watershed Hazardous Fuels Reduction and Forest Health Project | Notice | General Notice | 2012-11-06T05:00:00Z | 2012 | 11 | 2012-11-06T05:00:00Z | 2012-12-07T04:59:59Z | 2019-04-05T15:16:14Z | 2012-27030 | 0 | 0 | 090000648115f1e9 |
| FS-2019-0003-0052 | FS | Archived NEPA Notices 2011-2015 FS-2019-0003 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Visitor Permit and Visitor Registration Card | Notice | General Notice | 2012-10-25T04:00:00Z | 2012 | 10 | 2012-10-25T04:00:00Z | 2012-12-25T04:59:59Z | 2019-06-11T19:54:52Z | 2012-26246 | 0 | 0 | 09000064811502df |
| FS-2019-0003-0011 | FS | Archived NEPA Notices 2011-2015 FS-2019-0003 | Environmental Impact Statements; Availability, etc.: Helena National Forest, Montana, Telegraph Vegetation Project | Notice | General Notice | 2012-07-20T04:00:00Z | 2012 | 7 | 2012-07-20T04:00:00Z | 2012-08-21T03:59:59Z | 2019-04-01T14:11:25Z | 2012-17759 | 0 | 0 | 09000064810a6fa4 |
| FS-2019-0003-0051 | FS | Archived NEPA Notices 2011-2015 FS-2019-0003 | New Fee Sites | Notice | General Notice | 2012-07-20T04:00:00Z | 2012 | 7 | 2012-07-20T04:00:00Z | 2012-09-02T03:59:59Z | 2019-06-11T19:53:27Z | 2012-17687 | 0 | 0 | 09000064810a6f4a |
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;