documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "FSIS", document_type = "Rule" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-2022-0016-0001 | FSIS | Uniform Compliance Date for Food Labeling Regulations FSIS-2022-0016 | Uniform Compliance Date for Food Labeling Regulations | Rule | 2022-12-20T05:00:00Z | 2022 | 12 | 2022-12-20T05:00:00Z | 2023-01-20T04:59:59Z | 2023-01-20T02:00:29Z | 2022-27413 | 0 | 0 | 0900006485544072 | |
| FSIS-2019-0001-0007 | FSIS | Establishing a Uniform Time Period Requirement and Clarifying Related Procedures for the Filing of Appeals of Agency Inspection Actions FSIS-2019-0001 | Filing of Appeals of Agency Inspection Decisions or Actions: Establishing a Uniform Time Period Requirement and Clarifying Related Procedures | Rule | 2022-10-19T04:00:00Z | 2022 | 10 | 2022-10-19T04:00:00Z | 2022-10-21T10:35:13Z | 2022-22666 | 0 | 0 | 0900006485425d74 | ||
| FSIS-2021-0013-0001 | FSIS | Changes to Accreditation of Non-Federal Analytical Testing Laboratories. FSIS-2021-0013 | Changes to Accreditation of Non-Federal Analytical Testing Laboratories | Rule | 2022-08-24T04:00:00Z | 2022 | 8 | 2022-08-24T04:00:00Z | 2022-08-24T12:49:45Z | 2022-18274 | 0 | 0 | 090000648526d328 | ||
| FSIS-2018-0012-0025 | FSIS | Proposed rule to remove dual weight declaration requirement on product labeling that contains 1 pound or one pint and less than 4 pounds or 1 gallon. FSIS-2018-0012 | Rescission of Dual Labeling Requirements for Certain Packages of Meat and Poultry | Rule | 2022-08-17T04:00:00Z | 2022 | 8 | 2022-08-17T04:00:00Z | 2022-08-17T12:54:17Z | 2022-17498 | 0 | 0 | 09000064852453fa | ||
| FSIS-2020-0013-0152 | 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 | Rule | Final Rule | 2022-05-20T04:00:00Z | 2022 | 5 | 2022-05-20T04:00:00Z | 2022-05-23T12:22:09Z | 2022-10885 | 0 | 0 | 090000648509df64 |
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;