documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FWS-R2-ES-2020-0130" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-R2-ES-2020-0130-0057 | FWS | Endangered and Threatened Wildlife and Plants; Endangered Species Status for Arizona Eryngo and Designation of Critical Habitat FWS-R2-ES-2020-0130 | ArizonaEryngo_fCH_VertexCoords | Supporting & Related Material | 2022-06-10T04:00:00Z | 2022 | 6 | 2022-06-10T12:14:14Z | 0 | 0 | 090000648514ef33 | ||||
| FWS-R2-ES-2020-0130-0058 | FWS | Endangered and Threatened Wildlife and Plants; Endangered Species Status for Arizona Eryngo and Designation of Critical Habitat FWS-R2-ES-2020-0130 | ArizonaEryngo_fLfCH_LiteratureCited | Supporting & Related Material | 2022-06-10T04:00:00Z | 2022 | 6 | 2022-06-10T12:14:20Z | 0 | 0 | 090000648514ef45 | ||||
| FWS-R2-ES-2020-0130-0059 | FWS | Endangered and Threatened Wildlife and Plants; Endangered Species Status for Arizona Eryngo and Designation of Critical Habitat FWS-R2-ES-2020-0130 | Pima County 2020_SDCP MOU USFWS signed | Supporting & Related Material | 2022-06-10T04:00:00Z | 2022 | 6 | 2022-06-10T12:14:26Z | 0 | 0 | 090000648514ef46 | ||||
| FWS-R2-ES-2020-0130-0061 | FWS | Endangered and Threatened Wildlife and Plants; Endangered Species Status for Arizona Eryngo and Designation of Critical Habitat FWS-R2-ES-2020-0130 | Pima County 1989 Agua Caliente Masterplan | Supporting & Related Material | 2022-06-10T04:00:00Z | 2022 | 6 | 2022-06-10T12:14:40Z | 0 | 0 | 090000648514ef48 | ||||
| FWS-R2-ES-2020-0130-0062 | FWS | Endangered and Threatened Wildlife and Plants; Endangered Species Status for Arizona Eryngo and Designation of Critical Habitat FWS-R2-ES-2020-0130 | SSA_ArizonaEryngo_Version1.1_May092022 | Supporting & Related Material | 2022-06-10T04:00:00Z | 2022 | 6 | 2022-06-10T12:14:47Z | 0 | 0 | 090000648514ef49 | ||||
| FWS-R2-ES-2020-0130-0055 | FWS | Endangered and Threatened Wildlife and Plants; Endangered Species Status for Arizona Eryngo and Designation of Critical Habitat FWS-R2-ES-2020-0130 | Endangered and Threatened Species: Arizona Eryngo; Endangered Species Status and Designation of Critical Habitat | Rule | 2022-06-10T04:00:00Z | 2022 | 6 | 2022-06-10T12:12:53Z | 2022-12521 | 0 | 0 | 0900006485156a71 | |||
| FWS-R2-ES-2020-0130-0060 | FWS | Endangered and Threatened Wildlife and Plants; Endangered Species Status for Arizona Eryngo and Designation of Critical Habitat FWS-R2-ES-2020-0130 | ArizonaEryngo_EconomicsScreeningMemo_11.16.20 | Supporting & Related Material | 2022-06-10T04:00:00Z | 2022 | 6 | 2022-06-10T12:14:31Z | 0 | 0 | 090000648514ef47 | ||||
| FWS-R2-ES-2020-0130-0056 | FWS | Endangered and Threatened Wildlife and Plants; Endangered Species Status for Arizona Eryngo and Designation of Critical Habitat FWS-R2-ES-2020-0130 | ESRP Grey Lit - See attachments | Supporting & Related Material | 2022-06-10T04:00:00Z | 2022 | 6 | 2022-06-10T12:14:09Z | 0 | 0 | 090000648514eefa |
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;