documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "FS", document_type = "Rule" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FS_FRDOC_0001-3137 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Subsistence Management: Public Lands in Alaska; 2018-19 and 2019-20 Subsistence Taking of Wildlife | Rule | 2018-10-09T04:00:00Z | 2018 | 10 | 2018-10-09T04:00:00Z | 2018-10-09T12:03:42Z | 2018-21219 | 0 | 0 | 09000064837a9ec6 | ||
| FS_FRDOC_0001-3071 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Subsistence Management Regulations for Public Lands in Alaska: Applicability and Scope; Tongass National Forest Submerged Lands | Rule | 2018-05-23T04:00:00Z | 2018 | 5 | 2018-05-23T04:00:00Z | 2018-05-23T12:05:01Z | 2018-10938 | 0 | 0 | 09000064832bf231 | ||
| FS-2018-0023-0001 | FS | Forest Service Directives FS-2018-0023 | Forest Service Directives | Rule | Final Rule | 2018-03-30T04:00:00Z | 2018 | 3 | 2018-03-30T04:00:00Z | 2018-05-30T03:59:59Z | 2018-04-29T01:03:17Z | 2018-06130 | 0 | 0 | 0900006483074003 |
| FS_FRDOC_0001-3039 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Sale and Disposal of National Forest System Timber; CFR Correction | Rule | Final Rule | 2018-01-30T05:00:00Z | 2018 | 1 | 2018-01-30T05:00:00Z | 2018-02-18T05:03:05Z | 2018-01806 | 0 | 0 | 0900006482e7ca23 | |
| FS-2018-0010-0001 | FS | Subsistence Management Regulations for Public Lands in Alaska—2017–18 and 2018–19 Subsistence Taking of Fish Regulations FS-2018-0010 | Subsistence Management Regulations for Public Lands in Alaska: 2017-2018 and 2018-2019 Subsistence Taking of Fish Regulations | Rule | Final Rule | 2018-01-23T05:00:00Z | 2018 | 1 | 2018-01-23T05:00:00Z | 2018-02-18T05:17:56Z | 2018-00461 | 0 | 0 | 0900006482e4a6dc |
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;