documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "APHIS", document_type = "Proposed Rule" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, subtype, posted_month, comment_end_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| APHIS-2020-0079-0001 | APHIS | Regulation of the Movement of Animals Modified or Developed by Genetic Engineering APHIS-2020-0079 | Regulation of the Movement of Animals Modified or Developed by Genetic Engineering | Proposed Rule | Advance Notice of Proposed Rulemaking (ANPRM) | 2020-12-28T05:00:00Z | 2020 | 12 | 2020-12-28T05:00:00Z | 2021-05-08T03:59:59Z | 2021-05-08T23:11:37Z | 2020-28534 | 0 | 0 | 09000064849cc90d |
| APHIS-2019-0001-0001 | APHIS | Animal Welfare Act: Research Facility Registration Updates, Continuous Reviews, and Annual Reports APHIS-2019-0001 | Animal Welfare Act Research Facility Registration Updates, Reviews, and Reports | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2020-09-17T04:00:00Z | 2020 | 9 | 2020-09-17T04:00:00Z | 2020-11-17T04:59:59Z | 2020-11-18T02:01:31Z | 2020-20512 | 0 | 0 | 0900006484860615 |
| APHIS-2020-0068-0001 | APHIS | Standards for Birds under the Animal Welfare Act APHIS-2020-0068 | Meetings: Establishing Animal Welfare Act Standards for Birds | Proposed Rule | Advance Notice of Proposed Rulemaking (ANPRM) | 2020-08-20T04:00:00Z | 2020 | 8 | 2020-09-29T04:00:00Z | 2020-10-30T03:59:59Z | 2022-02-22T17:00:03Z | 2020-18134 | 0 | 0 | 0900006484813fd2 |
| APHIS-2017-0002-0055 | APHIS | National List of Reportable Animal Diseases APHIS-2017-0002 | National List of Reportable Animal Diseases | Proposed Rule | Reopening of Comment Period | 2020-08-18T04:00:00Z | 2020 | 8 | 2020-08-18T04:00:00Z | 2020-08-22T03:59:59Z | 2020-08-26T01:01:29Z | 2020-17339 | 0 | 0 | 090000648480ceae |
| APHIS-2018-0041-0028 | APHIS | Amendments to the Pale Cyst Nematode Regulations APHIS-2018-0041 | Amendments to the Pale Cyst Nematode Regulations | Proposed Rule | Reopening of Comment Period | 2020-06-05T04:00:00Z | 2020 | 6 | 2020-06-05T04:00:00Z | 2020-07-07T03:59:59Z | 2020-07-07T01:00:52Z | 2020-11792 | 0 | 0 | 09000064846cdf73 |
| APHIS-2017-0002-0001 | APHIS | National List of Reportable Animal Diseases APHIS-2017-0002 | National List of Reportable Animal Diseases | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2020-04-02T04:00:00Z | 2020 | 4 | 2020-04-02T04:00:00Z | 2020-08-22T03:59:59Z | 2020-08-22T01:02:29Z | 2020-06697 | 0 | 0 | 0900006484481384 |
| APHIS-2019-0018-0001 | APHIS | Biennial Review of Federal Select Agent List APHIS-2019-0018 | Agricultural Bioterrorism Protection Act of 2002; Biennial Review and Republication of the Select Agent and Toxin List | Proposed Rule | Advance Notice of Proposed Rulemaking (ANPRM) | 2020-03-17T04:00:00Z | 2020 | 3 | 2020-03-17T04:00:00Z | 2020-05-19T03:59:59Z | 2020-05-20T01:04:06Z | 2020-05499 | 0 | 0 | 090000648444be2d |
| APHIS-2019-0015-0001 | APHIS | Importation of Phalaenopsis Spp. Orchid Plants for Planting in Approved Growing Media From the Republic of Costa Rica Into the United States APHIS-2019-0015 | Importation of Phalaenopsis Spp. Orchid Plants for Planting in Approved Growing Media from the Republic of Costa Rica into the United States | Proposed Rule | Request for Comment | 2020-03-03T05:00:00Z | 2020 | 3 | 2020-03-03T05:00:00Z | 2020-05-05T03:59:59Z | 2020-05-14T15:00:04Z | 2020-04282 | 0 | 0 | 09000064843d862d |
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;