documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "BLM", document_type = "Rule" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| BLM-2008-0007-0654 | BLM | Land Withdrawals; Removal of Regulations Covering Emergency Withdrawals BLM-2008-0007 | Land Withdrawals; Amendment of Regulations Regarding Emergency Withdrawals | Rule | 2008-12-05T05:00:00Z | 2008 | 12 | 2008-12-05T05:00:00Z | 2011-06-11T17:00:05Z | E8-28742 | 0 | 0 | 09000064807ce09e | ||
| BLM-2008-0010-0001 | BLM | Mining Claims Under the General Mining Laws BLM-2008-0010 | Mining Claims Under the General Mining Laws | Rule | 2008-12-04T05:00:00Z | 2008 | 12 | 2008-12-04T05:00:00Z | 2009-02-03T04:59:59Z | 2011-06-11T17:00:06Z | E8-28741 | 0 | 0 | 09000064807cc84b | |
| BLM-2008-0004-0697 | BLM | Oil Shale - General BLM-2008-0004 | Oil Shale Management; General | Rule | 2008-11-18T05:00:00Z | 2008 | 11 | 2008-11-18T05:00:00Z | 2008-12-22T13:23:37Z | E8-27025 | 0 | 0 | 09000064807af8d2 | ||
| BLM-2007-0388-0016 | BLM | Update of Linear Right-of-way Rent Schedule BLM-2007-0388 | Update of Linear Right-of-Way Rent Schedule | Rule | 2008-10-31T04:00:00Z | 2008 | 10 | 2008-10-31T04:00:00Z | 2011-06-11T16:59:41Z | E8-25159 | 0 | 0 | 090000648078759b | ||
| BLM-2008-0009-0001 | BLM | Minerals Management Adjustment of Cost Recovery Fees BLM-2008-0009 | Minerals Management: Adjustment of Cost Recovery Fees | Rule | 2008-09-23T04:00:00Z | 2008 | 9 | 2008-09-23T04:00:00Z | 2011-06-11T17:00:06Z | E8-22255 | 0 | 0 | 090000648071ceb5 | ||
| BLM-2008-0008-0001 | BLM | Recreation and Public Purposes Act; Solid Waste Disposal BLM-2008-0008 | Recreation and Public Purposes Act; Solid Waste Disposal | Rule | 2008-08-26T04:00:00Z | 2008 | 8 | 2011-06-11T17:00:06Z | E8-19745 | 0 | 0 | 09000064806da40d | |||
| BLM-2008-0002-0001 | BLM | Oil and Gas Leasing; Geothermal Resources Leasing; Coal Management; Management of Solid Minerals Other Than Coal; Mineral Materials Disposal; and Mining Claims Under the General Mining Laws BLM-2008-0002 | Oil and Gas Leasing; Geothermal Resources Leasing; Coal Management; Management of Solid Minerals Other Than Coal; Mineral Materials Disposal; and Mining Claims Under the General Mining Laws | Rule | 2008-06-24T04:00:00Z | 2008 | 6 | 2008-06-24T04:00:00Z | 2011-06-11T16:59:43Z | E8-14215 | 0 | 0 | 0900006480639b0a | ||
| BLM-2008-0001-0001 | BLM | Oil and Gas Leasing; National Petroleum Reserve - - Alaska BLM-2008-0001 | Oil and Gas Leasing; National Petroleum Reserve--Alaska | Rule | 2008-02-04T05:00:00Z | 2008 | 2 | 2008-02-04T05:00:00Z | 2011-06-11T16:59:43Z | E8-01647 | 0 | 0 | 09000064803a79d6 |
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;