documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where agency_id = "FS", document_type = "Proposed Rule" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-2008-0003-0001 | FS | Management of National Forest System Surface Resurces with Privately Held Mineral Estates FS-2008-0003 | Management of National Forest System Surface Resources With Privately Held Mineral Estates | Proposed Rule | Advance notice of proposed rulemaking | 2008-12-29T05:00:00Z | 2008 | 12 | 2008-12-29T05:00:00Z | 2009-02-28T04:59:59Z | 2011-06-11T17:25:59Z | E8-30742 | 0 | 0 | 0900006480805ed1 |
| FS-2008-0001-0001 | FS | Law Enforcement Support Activities, 36 CFR Part 262 FS-2008-0001 | Law Enforcement Support Activities | Proposed Rule | Proposed rule | 2008-07-17T04:00:00Z | 2008 | 7 | 2008-07-17T04:00:00Z | 2008-09-16T03:59:59Z | 2011-06-11T17:25:59Z | E8-16129 | 0 | 0 | 090000648067fbb1 |
| FS-2007-0006-0001 | FS | 36 CFR 228 - Locatable Minerals FS-2007-0006 | Locatable Minerals Operations | Proposed Rule | Proposed rule | 2008-03-25T04:00:00Z | 2008 | 3 | 2008-03-25T04:00:00Z | 2008-05-28T03:59:59Z | 2011-06-11T17:25:56Z | E8-05746 | 0 | 0 | 09000064804079ce |
| FS-2007-0013-0001 | FS | Special Areas; Roadless Area Conservation; Applicability to the National Forests in Idaho FS-2007-0013 | Special Areas; Roadless Area Conservation; Applicability to the National Forests in Idaho | Proposed Rule | Proposed rule | 2008-01-07T05:00:00Z | 2008 | 1 | 2008-01-07T05:00:00Z | 2008-04-08T03:59:59Z | 2011-06-11T17:25:58Z | 07-06305 | 0 | 0 | 090000648038b67a |
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;