documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "FWS", docket_id = "FWS-R3-ES-2018-0036" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FWS-R3-ES-2018-0036-0042 | FWS | Removing Trifolium stoloniferum (Running Buffalo Clover) from the Federal List of Endangered and Threatened Plants FWS-R3-ES-2018-0036 | Final Post-Delisting Monitoring Plan for Running Buffalo Clover (Trifolium stoloniferum) April 2021 | Supporting & Related Material | 2021-08-31T04:00:00Z | 2021 | 8 | 2021-08-31T14:33:26Z | 0 | 0 | 0900006484cbf0c6 | ||||
| FWS-R3-ES-2018-0036-0036 | FWS | Removing Trifolium stoloniferum (Running Buffalo Clover) from the Federal List of Endangered and Threatened Plants FWS-R3-ES-2018-0036 | RBC Recovery Plan 1989 | Supporting & Related Material | Environmental Report | 2021-08-06T04:00:00Z | 2021 | 8 | 2021-08-06T12:05:13Z | 0 | 0 | 0900006484c2f9b7 | |||
| FWS-R3-ES-2018-0036-0038 | FWS | Removing Trifolium stoloniferum (Running Buffalo Clover) from the Federal List of Endangered and Threatened Plants FWS-R3-ES-2018-0036 | RBC 5YR 2008 | Supporting & Related Material | Environmental Report | 2021-08-06T04:00:00Z | 2021 | 8 | 2021-08-06T12:05:24Z | 0 | 0 | 0900006484c2f9b1 | |||
| FWS-R3-ES-2018-0036-0037 | FWS | Removing Trifolium stoloniferum (Running Buffalo Clover) from the Federal List of Endangered and Threatened Plants FWS-R3-ES-2018-0036 | RBC Recovery Plan First Revision (June 2007) | Supporting & Related Material | Environmental Report | 2021-08-06T04:00:00Z | 2021 | 8 | 2021-08-06T12:05:19Z | 0 | 0 | 0900006484c2f9b5 | |||
| FWS-R3-ES-2018-0036-0035 | FWS | Removing Trifolium stoloniferum (Running Buffalo Clover) from the Federal List of Endangered and Threatened Plants FWS-R3-ES-2018-0036 | Running Buffalo Clover Final Delisting Rule Literature Cited | Supporting & Related Material | Reference (external attachments) | 2021-08-06T04:00:00Z | 2021 | 8 | 2021-08-06T12:04:49Z | 0 | 0 | 0900006484c2f9b2 | |||
| FWS-R3-ES-2018-0036-0040 | FWS | Removing Trifolium stoloniferum (Running Buffalo Clover) from the Federal List of Endangered and Threatened Plants FWS-R3-ES-2018-0036 | RBC 5YR 2017 | Supporting & Related Material | Environmental Report | 2021-08-06T04:00:00Z | 2021 | 8 | 2021-08-06T12:05:33Z | 0 | 0 | 0900006484c2f9b6 | |||
| FWS-R3-ES-2018-0036-0041 | FWS | Removing Trifolium stoloniferum (Running Buffalo Clover) from the Federal List of Endangered and Threatened Plants FWS-R3-ES-2018-0036 | 52 FR 21478 Determination of Endangered Status for Running Buffalo Clover | Supporting & Related Material | 2021-08-06T04:00:00Z | 2021 | 8 | 2021-08-06T12:05:38Z | 0 | 0 | 0900006484c2f9b4 | ||||
| FWS-R3-ES-2018-0036-0034 | FWS | Removing Trifolium stoloniferum (Running Buffalo Clover) from the Federal List of Endangered and Threatened Plants FWS-R3-ES-2018-0036 | Endangered and Threatened Wildlife and Plants: Removing Trifolium stoloniferum (Running Buffalo Clover) from the Federal List of Endangered and Threatened Plants | Rule | 2021-08-06T04:00:00Z | 2021 | 8 | 2021-08-06T12:02:21Z | 2021-16818 | 0 | 0 | 0900006484c2fe47 | |||
| FWS-R3-ES-2018-0036-0039 | FWS | Removing Trifolium stoloniferum (Running Buffalo Clover) from the Federal List of Endangered and Threatened Plants FWS-R3-ES-2018-0036 | RBC 5YR 2011 | Supporting & Related Material | Environmental Report | 2021-08-06T04:00:00Z | 2021 | 8 | 2021-08-06T12:05:28Z | 0 | 0 | 0900006484c2f9b3 |
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;