documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "BLM" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_date, posted_month, comment_end_date, withdrawn, 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-2014-0002-0013 | BLM | Competitive Processes, Terms, and Conditions for Leasing Public Lands for Solar and Wind Energy Development and Technical Changes and Corrections BLM-2014-0002 | Leasing Public Lands for Solar and Wind Energy Development: Competitive Processes, Terms, and Conditions; Corrections | Proposed Rule | 2014-11-21T05:00:00Z | 2014 | 11 | 2014-11-21T05:00:00Z | 2014-12-17T04:59:59Z | 2015-01-14T03:03:39Z | 2014-27639 | 0 | 0 | 090000648193d6f3 | |
| BLM-2014-0002-0001 | BLM | Competitive Processes, Terms, and Conditions for Leasing Public Lands for Solar and Wind Energy Development and Technical Changes and Corrections BLM-2014-0002 | Competitive Processes, Terms, and Conditions: Leasing Public Lands for Solar and Wind Energy Development | Proposed Rule | 2014-09-30T04:00:00Z | 2014 | 9 | 2014-09-30T04:00:00Z | 2014-12-17T04:59:59Z | 2014-12-20T03:05:29Z | 2014-23089 | 0 | 0 | 090000648189c104 | |
| BLM-2014-0002-0003 | BLM | Competitive Processes, Terms, and Conditions for Leasing Public Lands for Solar and Wind Energy Development and Technical Changes and Corrections BLM-2014-0002 | 28002809 Environmental Analysis 9.24.14 | Supporting & Related Material | 2014-09-30T04:00:00Z | 2014 | 9 | 2014-09-30T20:22:23Z | 0 | 0 | 090000648189e0c0 | ||||
| BLM-2014-0002-0004 | BLM | Competitive Processes, Terms, and Conditions for Leasing Public Lands for Solar and Wind Energy Development and Technical Changes and Corrections BLM-2014-0002 | 28002809 Final Economic Analysis 9.24.14 | Supporting & Related Material | 2014-09-30T04:00:00Z | 2014 | 9 | 2014-09-30T20:26:43Z | 0 | 0 | 090000648189e0c1 | ||||
| BLM-2014-0002-0002 | BLM | Competitive Processes, Terms, and Conditions for Leasing Public Lands for Solar and Wind Energy Development and Technical Changes and Corrections BLM-2014-0002 | 28002809 Environmental Analysis 9.24.14 | Supporting & Related Material | 2014-09-30T00:00:00Z | 2014 | 9 | 2014-09-30T20:27:56Z | 0 | 1 | 090000648189e05e | ||||
| BLM-2023-0003-0009 | BLM | Administrative Final Rules Published Without Comments BLM-2023-0003 | Minerals Management: Adjustment of Cost Recovery Fees | Rule | 2014-09-25T04:00:00Z | 2014 | 9 | 2014-09-25T04:00:00Z | 2023-04-13T13:45:26Z | 2014-22836 | 0 | 0 | 090000648188fa75 | ||
| BLM-2023-0003-0008 | BLM | Administrative Final Rules Published Without Comments BLM-2023-0003 | Required Fees for Mining Claims or Sites | Rule | 2014-06-30T04:00:00Z | 2014 | 6 | 2014-06-30T04:00:00Z | 2023-04-13T13:44:39Z | 2014-15259 | 0 | 0 | 0900006481774ce4 | ||
| BLM-2014-0001-0001 | BLM | Waste Mine Methane Capture, Use, Sale, or Destruction BLM-2014-0001 | Waste Mine Methane Capture, Use, Sale, or Destruction | Proposed Rule | 2014-04-29T04:00:00Z | 2014 | 4 | 2014-04-29T04:00:00Z | 2014-07-01T03:59:59Z | 2014-08-21T01:03:54Z | 2014-09688 | 0 | 0 | 09000064816d3f75 |
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;