documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "FSIS", document_type = "Proposed Rule" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FSIS-2020-0036-0001 | FSIS | Labeling of Meat or Poultry Products Comprised of or Containing Cultured Animal Cells FSIS-2020-0036 | Labeling of Meat or Poultry Products Comprised of or Containing Cultured Animal Cells | Proposed Rule | 2021-09-03T04:00:00Z | 2021 | 9 | 2021-09-03T04:00:00Z | 2021-12-03T04:59:59Z | 2021-12-09T02:00:56Z | 2021-19057 | 0 | 0 | 0900006484d4a9ab | |
| FSIS-2020-0013-0001 | FSIS | Removal of 9 CFR 355- Certified Products for Dogs, Cats, and Other Carnivora; Inspection, Certification, and Identification as to Class, Quality, Quantity, and Condition FSIS-2020-0013 | Certified Products for Dogs, Cats, and Other Carnivora; Inspection, Certification, and Identification as to Class, Quality, Quantity, and Condition; Removal | Proposed Rule | 2021-07-28T04:00:00Z | 2021 | 7 | 2021-07-28T04:00:00Z | 2021-09-28T03:59:59Z | 2021-09-28T01:00:45Z | 2021-15438 | 0 | 0 | 0900006484c14775 | |
| FSIS-2020-0013-0002 | FSIS | Removal of 9 CFR 355- Certified Products for Dogs, Cats, and Other Carnivora; Inspection, Certification, and Identification as to Class, Quality, Quantity, and Condition FSIS-2020-0013 | Establishing a Uniform Time Period Requirement and Clarifying Related Procedures for the Filing of Appeals of Agency Inspection Decisions or Actions; Correction | Proposed Rule | 2021-07-28T00:00:00Z | 2021 | 7 | 2021-10-04T13:17:16Z | 0 | 1 | 0900006484c148e9 | ||||
| FSIS-2019-0001-0001 | FSIS | Establishing a Uniform Time Period Requirement and Clarifying Related Procedures for the Filing of Appeals of Agency Inspection Actions FSIS-2019-0001 | Establishing a Uniform Time Period Requirement and Clarifying Related Procedures for the Filing of Appeals of Agency Inspection Decisions or Actions | Proposed Rule | 2021-07-15T04:00:00Z | 2021 | 7 | 2021-07-15T04:00:00Z | 2021-09-14T03:59:59Z | 2021-09-14T01:00:48Z | 2021-14947 | 0 | 0 | 0900006484bf9e3f | |
| FSIS-2021-0022-0001 | FSIS | Regulation of the Movement of Animals Modified or Developed by Genetic Engineering FSIS-2021-0022 | Regulation of the Movement of Animals Modified or Developed by Genetic Engineering | Proposed Rule | 2021-03-08T05:00:00Z | 2021 | 3 | 2021-09-03T14:19:44Z | 2021-04716 | 0 | 0 | 0900006484a6249b | |||
| FSIS-2020-0019-0001 | FSIS | Internet Access at Official Establishments and Plants FSIS-2020-0019 | Internet Access at Official Establishments and Plants | Proposed Rule | 2021-03-02T05:00:00Z | 2021 | 3 | 2021-03-02T05:00:00Z | 2021-05-04T03:59:59Z | 2021-05-05T01:00:45Z | 2021-03609 | 0 | 0 | 0900006484a5b6a6 |
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;