documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FS-2019-0003" and posted_year = 2013 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-0014 | FS | Archived NEPA Notices 2011-2015 FS-2019-0003 | Environmental Impact Statements; Availability, etc.: Medicine Bow-Routt National Forests and Thunder Basin National Grassland, WY; Prairie Dog Amendment; Correction | Notice | General Notice | 2013-11-01T04:00:00Z | 2013 | 11 | 2013-11-01T04:00:00Z | 2014-01-04T04:59:59Z | 2019-04-05T15:08:34Z | 2013-26049 | 0 | 0 | 090000648146c0c7 |
| FS-2019-0003-0057 | FS | Archived NEPA Notices 2011-2015 FS-2019-0003 | Proposed Fee Schedule for Commercial Filming and Still Photography Permits | Notice | General Notice | 2013-09-23T04:00:00Z | 2013 | 9 | 2013-09-23T04:00:00Z | 2013-10-24T03:59:59Z | 2019-06-11T20:00:06Z | 2013-23186 | 0 | 0 | 0900006481430fbd |
| FS-2019-0003-0028 | FS | Archived NEPA Notices 2011-2015 FS-2019-0003 | Environmental Impact Statements; Availability, etc.: SDGandE Master Special Use Permit and Permit to Construct Power Line Replacement Projects, Cleveland National Forest, CA | Notice | General Notice | 2013-09-23T04:00:00Z | 2013 | 9 | 2013-09-23T04:00:00Z | 2013-11-08T04:59:59Z | 2019-04-05T15:17:17Z | 2013-22904 | 0 | 0 | 0900006481430fbb |
| FS-2019-0003-0062 | FS | Archived NEPA Notices 2011-2015 FS-2019-0003 | New Recreation Fees: Manti-La Sal National Forest | Notice | General Notice | 2013-07-16T04:00:00Z | 2013 | 7 | 2013-07-16T04:00:00Z | 2014-01-01T04:59:59Z | 2019-06-11T20:10:28Z | 2013-17028 | 0 | 0 | 0900006481368615 |
| FS-2019-0003-0056 | FS | Archived NEPA Notices 2011-2015 FS-2019-0003 | Proposed Directives for Forest Service Land Management Planning | Notice | General Notice | 2013-05-09T04:00:00Z | 2013 | 5 | 2013-05-09T04:00:00Z | 2013-05-25T03:59:59Z | 2019-06-11T19:58:12Z | 2013-10998 | 0 | 0 | 09000064812d1d01 |
| FS-2019-0003-0010 | FS | Archived NEPA Notices 2011-2015 FS-2019-0003 | Environmental Impact Statements; Availability, etc.: Green Mountain Lookout Removal, Snohomish County, WA | Notice | General Notice | 2013-05-02T04:00:00Z | 2013 | 5 | 2013-05-02T04:00:00Z | 2013-06-04T03:59:59Z | 2019-04-01T14:10:27Z | 2013-10322 | 0 | 0 | 09000064812b1d40 |
| FS-2019-0003-0055 | FS | Archived NEPA Notices 2011-2015 FS-2019-0003 | New Fee Sites | Notice | General Notice | 2013-03-19T04:00:00Z | 2013 | 3 | 2013-03-19T04:00:00Z | 2013-10-02T03:59:59Z | 2019-06-11T19:57:44Z | 2013-06270 | 0 | 0 | 0900006481234e00 |
| FS-2019-0003-0054 | FS | Archived NEPA Notices 2011-2015 FS-2019-0003 | National Forest System Land Management Planning Directives | Notice | General Notice | 2013-02-27T05:00:00Z | 2013 | 2 | 2013-02-27T05:00:00Z | 2013-04-30T03:59:59Z | 2019-06-11T19:56:38Z | 2013-04470 | 0 | 0 | 090000648120cd6a |
| FS-2019-0003-0002 | FS | Archived NEPA Notices 2011-2015 FS-2019-0003 | Environmental Impact Statements; Availability, etc.: Beaver Creek Project, Idaho Panhandle National Forests, Shoshone County, ID | Notice | General Notice | 2013-01-22T05:00:00Z | 2013 | 1 | 2013-01-22T05:00:00Z | 2013-02-22T04:59:59Z | 2019-03-27T18:48:05Z | 2013-01126 | 0 | 0 | 09000064811d14e5 |
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;