documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "FSIS", document_type = "Notice" and posted_year = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FSIS-2005-0013-0003 | FSIS | Notice of Request for a New Information Collection (Application for return of Exported Products) FSIS-2005-0013 | Notice of Request for a New Information Collection (Application for Return of Exported Products) | Notice | 2005-12-21T05:00:00Z | 2005 | 12 | 2005-12-21T05:00:00Z | 2006-02-15T04:59:59Z | 2006-09-02T17:59:14Z | E5-07443 | 0 | 0 | 09000064800f8a6c | |
| FSIS-2005-0010-0001 | FSIS | Meeting To Discuss Possible Changes to the Regulatory Jurisdiction of Certain Food Products Containing Meat and Poultry FSIS-2005-0010 | Meeting To Discuss Possible Changes to the Regulatory Jurisdiction of Certain Food Products Containing Meat and Poultry | Notice | 2005-11-07T05:00:00Z | 2005 | 11 | 2005-11-07T05:00:00Z | 2006-09-02T17:59:09Z | 05-22123 | 0 | 0 | 090000648009bef9 | ||
| FSIS-2005-0009-0001 | FSIS | Nominations for the Howard E. Bauman Award FSIS-2005-0009 | Nominations for the Howard E. Bauman Award | Notice | 2005-11-03T05:00:00Z | 2005 | 11 | 2005-11-03T05:00:00Z | 2006-09-02T17:59:07Z | 05-21936 | 0 | 0 | 090000648009a5c4 | ||
| FSIS-2005-0008-0001 | FSIS | National Advisory Committee on Meat and Poultry Inspection FSIS-2005-0008 | National Advisory Committee on Meat and Poultry Inspection | Notice | 2005-10-28T04:00:00Z | 2005 | 10 | 2005-10-28T04:00:00Z | 2006-09-02T17:59:06Z | 05-21567 | 0 | 0 | 0900006480097dd7 | ||
| FSIS-2005-0007-0001 | FSIS | New Technology Web Site Contents; Response to Comments FSIS-2005-0007 | New Technology Web Site Contents; Response to Comments | Notice | 2005-10-19T04:00:00Z | 2005 | 10 | 2005-10-19T04:00:00Z | 2006-09-02T17:59:04Z | 05-20908 | 0 | 0 | 0900006480094935 | ||
| FSIS-2005-0004-0001 | FSIS | Codex Alimentarius Commission: Meeting of the Codex Committee on Food Import and Export Inspection and Certification Systems FSIS-2005-0004 | Codex Alimentarius Commission: Meeting of the Codex Committee on Food Import and Export Inspection and Certification Systems | Notice | 2005-09-28T04:00:00Z | 2005 | 9 | 2005-09-28T04:00:00Z | 2006-09-02T17:58:59Z | 05-19374 | 0 | 0 | 090000648008bfe9 | ||
| FSIS-2005-0005-0001 | FSIS | Treatment of Live Poultry Before Slaughter FSIS-2005-0005 | Treatment of Live Poultry Before Slaughter | Notice | 2005-09-28T04:00:00Z | 2005 | 9 | 2005-09-28T04:00:00Z | 2006-09-02T17:59:01Z | 05-19378 | 0 | 0 | 090000648008c17c |
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;