documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "FS", document_type = "Notice" and posted_year = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, subtype, posted_month, comment_end_date, last_modified, 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-2007-0008-0003 | FS | Proposed Directives for Forest Service Outfitting and Guiding Special Use Permits and Insurance Requirement for Forest Service Special Use Permits FS-2007-0008 | Notice of Extension of Public Comment Period--Proposed Directives for Forest Service Outfitting and Guiding Special Use Permits and Insurance Requirements for Forest Service Special Use Permits | Notice | Other | 2007-12-14T05:00:00Z | 2007 | 12 | 2007-12-14T05:00:00Z | 2008-02-20T04:59:59Z | 2011-06-11T17:25:57Z | E7-24240 | 0 | 0 | 0900006480379dd3 |
| FS-2007-0012-0001 | FS | Information Collection; Small Business Timber Sale Set-Aside Program; Appeal Procedures on Recomputation of Shares FS-2007-0012 | Information Collection; Small Business Timber Sale Set-Aside Program; Appeal Procedures on Recomputation of Shares | Notice | Information collection; comment request | 2007-12-10T05:00:00Z | 2007 | 12 | 2007-12-10T05:00:00Z | 2008-02-09T04:59:59Z | 2007-12-10T19:31:17Z | E7-23836 | 0 | 0 | 09000064803759f9 |
| FS-2007-0008-0001 | FS | Proposed Directives for Forest Service Outfitting and Guiding Special Use Permits and Insurance Requirement for Forest Service Special Use Permits FS-2007-0008 | Proposed Directives for Forest Service Outfitting and Guiding Special Use Permits and Insurance Requirements for Forest Service Special Use Permits | Notice | Availability of document | 2007-10-19T04:00:00Z | 2007 | 10 | 2007-10-19T04:00:00Z | 2008-02-20T04:59:59Z | 2011-06-11T17:25:57Z | E7-20659 | 0 | 0 | 09000064803304bc |
| FS-2007-0011-0001 | FS | Wind Energy, Proposed Forest Service Directives FS-2007-0011 | Wind Energy, Proposed Forest Service Directives | Notice | Availability of document | 2007-09-24T04:00:00Z | 2007 | 9 | 2007-09-24T04:00:00Z | 2008-01-24T04:59:59Z | 2011-06-11T17:25:58Z | E7-18715 | 0 | 0 | 0900006480297d5a |
| FS-2007-0004-0002 | FS | Roadless Area Conservation; National Forest System Lands in Idaho FS-2007-0004 | Notice of Intent to Prepare An EIS | Notice | Other | 2007-04-26T04:00:00Z | 2007 | 4 | 2007-04-26T04:00:00Z | 2007-04-26T14:50:28Z | 0 | 0 | 090000648022f446 | ||
| FS-2007-0004-0001 | FS | Roadless Area Conservation; National Forest System Lands in Idaho FS-2007-0004 | Roadless Area Conservation; National Forest System Lands in Idaho | Notice | Other | 2007-04-10T04:00:00Z | 2007 | 4 | 2007-04-10T04:00:00Z | 2007-04-26T14:43:55Z | E7-06756 | 0 | 0 | 090000648022338c | |
| FS-2007-0003-0001 | FS | Travel Management, Proposed Forest Service Directives; Forest Service Manual 2350, 7700, and Forest Service Handbook 7709.55 FS-2007-0003 | Travel Management, Proposed Forest Service Directives; Forest Service Manual 2350, 7700, and 7710 and Forest Service Handbook 7709.55 | Notice | Other | 2007-03-08T15:53:57Z | 2007 | 3 | 2007-03-09T05:00:00Z | 2007-05-09T03:59:59Z | 2011-06-11T17:25:55Z | E7-04261 | 0 | 0 | 0900006480210cc8 |
| FS-2007-0001-0002 | FS | Forest Service Guidelines for Tribal Forest Protection Act FS-2007-0001 | Forest Service Interim Guidelines for Tribal Forest Protection Act | Notice | Other | 2007-01-25T05:00:00Z | 2007 | 1 | 2006-12-26T20:09:16Z | 2007-02-27T04:59:59Z | 2007-01-25T20:10:23Z | 0 | 0 | 09000064801f7668 |
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;