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 = "Other" and posted_year = 2013 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-2013-0046-0001 | FSIS | Poultry Checklist Questionnaire FSIS-2013-0046 | Poultry Checklist Questionnaire | Other | 2013-12-12T05:00:00Z | 2013 | 12 | 2013-12-13T05:00:00Z | 2014-01-04T04:59:59Z | 2013-12-13T19:33:58Z | 0 | 0 | 09000064814ba3fd | ||
| FSIS-2013-0036-0001 | FSIS | FSIS Compliance Guide for a Systematic Approach to the Humane Handling of Livestock FSIS-2013-0036 | FSIS Compliance Guide for a Systematic Approach to the Humane Handling of Livestock | Other | 2013-10-23T04:00:00Z | 2013 | 10 | 2013-10-29T04:00:00Z | 2013-12-31T04:59:59Z | 2013-12-31T02:02:31Z | 0 | 0 | 090000648145b49b | ||
| FSIS-2013-0035-0001 | FSIS | Agency Organization FSIS-2013-0035 | Agency Organization | Other | 2013-10-21T04:00:00Z | 2013 | 10 | 2013-10-21T04:00:00Z | 2013-10-21T19:36:10Z | 0 | 0 | 09000064814572d7 | |||
| FSIS-2013-0034-0001 | FSIS | FSIS Nationwide Beef and Veal Carcass Microbiological Baseline Survey FSIS-2013-0034 | FSIS Nationwide Beef and Veal Carcass Microbiological Baseline Survey | Other | 2013-09-25T04:00:00Z | 2013 | 9 | 2013-09-25T04:00:00Z | 2014-01-01T04:59:59Z | 2013-10-18T01:02:09Z | 0 | 0 | 0900006481439f8c | ||
| FSIS-2013-0010-0002 | FSIS | Shiga Toxin-Producing Escherichia coli (STEC) Draft Survey Available for Public Comment FSIS-2013-0010 | Shiga Toxin-Producing Escherichia coli (STEC) Draft Survey Available for Public Comments | Other | 2013-02-08T05:00:00Z | 2013 | 2 | 2013-02-08T05:00:00Z | 2013-03-26T03:59:59Z | 2013-03-26T02:01:32Z | 0 | 0 | 09000064811ed89e | ||
| FSIS-2013-0010-0001 | FSIS | Shiga Toxin-Producing Escherichia coli (STEC) Draft Survey Available for Public Comment FSIS-2013-0010 | Shiga Toxin-Producing Escherichia coli (STEC) Draft Survey Available for Public Comment | Other | 2013-02-07T00:00:00Z | 2013 | 2 | 2013-02-08T15:21:28Z | 0 | 1 | 09000064811ec3e9 | ||||
| FSIS-2013-0008-0001 | FSIS | FSIS Compliance Guideline: Controlling Meat and Poultry Products Pending FSIS Test Results 2013 FSIS-2013-0008 | FSIS Compliance Guideline: Controlling Meat and Poultry Products Pending FSIS Test Results 2013 | Other | 2013-02-01T05:00:00Z | 2013 | 2 | 2013-02-01T05:00:00Z | 2013-04-03T03:59:59Z | 2013-04-04T02:02:46Z | 0 | 0 | 09000064811e3108 |
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;