documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "FSIS" and docket_id = "FSIS-2005-0015" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
- Rule 4
- Proposed Rule 1
agency_id 1
- FSIS · 5 ✖
| 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-2005-0015-0093 | FSIS | Egg Products Inspection Regulations FSIS-2005-0015 | Rules of Practice; CFR Correction | Rule | 2024-07-03T04:00:00Z | 2024 | 7 | 2024-07-03T04:00:00Z | 2024-07-09T18:43:22Z | 2024-14682 | 0 | 0 | 09000064865d89ac | ||
| FSIS-2005-0015-0092 | FSIS | Egg Products Inspection Regulations FSIS-2005-0015 | Egg Products Inspection Regulations; Correction | Rule | 2021-11-03T04:00:00Z | 2021 | 11 | 2021-11-03T04:00:00Z | 2022-01-31T16:00:12Z | 2021-23703 | 0 | 0 | 0900006484e0fad5 | ||
| FSIS-2005-0015-0091 | FSIS | Egg Products Inspection Regulations FSIS-2005-0015 | Egg Products Inspection Regulations | Rule | 2020-12-16T05:00:00Z | 2020 | 12 | 2020-12-16T05:00:00Z | 2020-12-17T18:16:47Z | 2020-26798 | 0 | 0 | 09000064849a1a91 | ||
| FSIS-2005-0015-0090 | FSIS | Egg Products Inspection Regulations FSIS-2005-0015 | Egg Products Inspection Regulations | Rule | 2020-10-29T04:00:00Z | 2020 | 10 | 2020-10-29T04:00:00Z | 2020-12-29T04:59:59Z | 2020-11-05T18:07:27Z | 2020-20151 | 0 | 0 | 090000648493e487 | |
| FSIS-2005-0015-0001 | FSIS | Egg Products Inspection Regulations FSIS-2005-0015 | Egg Products Inspection Regulations | Proposed Rule | 2018-02-13T05:00:00Z | 2018 | 2 | 2018-02-13T05:00:00Z | 2018-06-14T03:59:59Z | 2020-09-16T01:02:21Z | 2018-00425 | 0 | 0 | 0900006482f274b2 |
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;