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 = "Other" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_date, posted_month, comment_start_date, comment_end_date, 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-2016-0046-0001 | FSIS | Equivalence Power Point FSIS-2016-0046 | Proposed FSIS Equivalence Webpage Improvements | Other | 2016-12-07T05:00:00Z | 2016 | 12 | 2016-12-07T05:00:00Z | 2017-03-08T04:59:59Z | 2017-02-08T02:01:59Z | 0 | 0 | 09000064823e732d | ||
| FSIS-2016-0044-0001 | FSIS | Food Product Dating FSIS-2016-0044 | Food Product Dating - V3 (2) | Other | 2016-12-07T05:00:00Z | 2016 | 12 | 2016-12-07T05:00:00Z | 2017-03-08T04:59:59Z | 2017-03-08T02:01:44Z | 0 | 0 | 09000064823e00d6 | ||
| FSIS-2014-0032-0026 | FSIS | Establishment-Specific Data Release Strategic Plan FSIS-2014-0032 | EggSamplingData_DataDocumentation_v5 | Other | 2016-11-18T05:00:00Z | 2016 | 11 | 2016-11-18T05:00:00Z | 2017-01-01T04:59:59Z | 2016-11-18T13:00:38Z | 0 | 0 | 090000648239fe19 | ||
| FSIS-2014-0032-0027 | FSIS | Establishment-Specific Data Release Strategic Plan FSIS-2014-0032 | Copy of Egg_Data_Sample | Other | 2016-11-18T05:00:00Z | 2016 | 11 | 2016-11-18T05:00:00Z | 2017-01-01T04:59:59Z | 2016-11-18T12:16:38Z | 0 | 0 | 090000648239fe1a | ||
| FSIS-2016-0010-0209 | FSIS | Historical Public Comments and Related Documents from FSIS’ Hazard Analysis Critical Control Point (HACCP) Federal Register Notices FSIS-2016-0010 | File 6. Drafts With Correction on Patty Docket, FY 93 | Other | 2016-03-25T00:00:00Z | 2016 | 3 | 2016-03-25T12:38:04Z | 0 | 1 | 0900006481ede5d5 | ||||
| FSIS-2016-0010-0001 | FSIS | Historical Public Comments and Related Documents from FSIS’ Hazard Analysis Critical Control Point (HACCP) Federal Register Notices FSIS-2016-0010 | Historical Public Comments and Related Documents from FSIS | Other | 2016-02-22T00:00:00Z | 2016 | 2 | 2016-02-22T16:38:08Z | 0 | 1 | 0900006481e7cd88 |
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;