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 = "Proposed Rule" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2020-0010-0001 | FS | Assessing Fees for Excess and Unauthorized Grazing FS-2020-0010 | Assessing Fees for Excess and Unauthorized Grazing | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2020-11-02T05:00:00Z | 2020 | 11 | 2020-11-02T05:00:00Z | 2020-12-03T04:59:59Z | 2020-12-03T02:01:52Z | 2020-24164 | 0 | 0 | 09000064849459c5 |
| FS-2020-0007-0001 | FS | Oil and Gas Resources FS-2020-0007 | Oil and Gas Resources | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2020-09-01T04:00:00Z | 2020 | 9 | 2020-09-01T04:00:00Z | 2020-11-03T04:59:59Z | 2020-11-04T02:02:04Z | 2020-18518 | 0 | 0 | 090000648483247a |
| FS-2020-0005-0001 | FS | Special Uses: Processing of Applications, Issuance of Authorizations, and Communications Site Management FS-2020-0005 | Special Uses: Processing of Applications, Issuance of Authorizations, and Communications Site Management | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2020-06-04T04:00:00Z | 2020 | 6 | 2020-07-28T15:22:51Z | 2020-11830 | 0 | 0 | 09000064846c9ef1 | ||
| FS-2020-0002-0001 | FS | Conveyance of Small Tracts FS-2020-0002 | Conveyance of Small Tracts | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2020-02-26T05:00:00Z | 2020 | 2 | 2020-02-26T05:00:00Z | 2020-04-28T03:59:59Z | 2020-04-28T01:02:55Z | 2020-03639 | 0 | 0 | 09000064843b4e3e |
| FS_FRDOC_0001-3294 | FS | Recently Posted FS Rules and Notices. FS_FRDOC_0001 | Subsistence Management for Public Lands in Alaska: 2021-22 and 2022-23 Subsistence Taking of Fish and Shellfish | Proposed Rule | 2020-02-19T05:00:00Z | 2020 | 2 | 2020-02-19T05:00:00Z | 2020-03-27T03:59:59Z | 2020-02-24T02:02:16Z | 2020-03306 | 0 | 0 | 0900006484386835 |
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;