documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FNS-2016-0018" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FNS-2016-0018-1266 | FNS | Enhancing Retailer Standards in the Supplemental Nutrition Assistance Program (SNAP) FNS-2016-0018 | Enhancing Retailer Standards in the Supplemental Nutrition Assistance Program (SNAP) - Regulatory Flexibility Analysis | Supporting & Related Material | 2016-12-15T05:00:00Z | 2016 | 12 | 2016-12-15T13:24:48Z | 0 | 0 | 0900006482409f52 | ||||
| FNS-2016-0018-1265 | FNS | Enhancing Retailer Standards in the Supplemental Nutrition Assistance Program (SNAP) FNS-2016-0018 | Enhancing Retailer Standards in the Supplemental Nutrition Assistance Program (SNAP) | Rule | 2016-12-15T05:00:00Z | 2016 | 12 | 2016-12-15T05:00:00Z | 2016-12-15T13:37:00Z | 2016-29837 | 0 | 0 | 090000648240b664 | ||
| FNS-2016-0018-1267 | FNS | Enhancing Retailer Standards in the Supplemental Nutrition Assistance Program (SNAP) FNS-2016-0018 | Enhancing Retailer Standards in the Supplemental Nutrition Assistance Program (SNAP) - Regulatory Impact Analysis | Supporting & Related Material | 2016-12-15T05:00:00Z | 2016 | 12 | 2016-12-15T13:26:00Z | 0 | 0 | 090000648240b776 | ||||
| FNS-2016-0018-0099 | FNS | Enhancing Retailer Standards in the Supplemental Nutrition Assistance Program (SNAP) FNS-2016-0018 | Enhancing Retailer Standards in the Supplemental Nutrition Assistance Program; Clarification and Extension of Comment Period | Proposed Rule | 2016-04-05T04:00:00Z | 2016 | 4 | 2016-04-05T04:00:00Z | 2016-05-19T03:59:59Z | 2016-06-22T01:00:30Z | 2016-07793 | 0 | 0 | 0900006481f27fad | |
| FNS-2016-0018-0006 | FNS | Enhancing Retailer Standards in the Supplemental Nutrition Assistance Program (SNAP) FNS-2016-0018 | SNAP-Retailer_Enhance_RIA_FINAL_1-4-2016 | Supporting & Related Material | 2016-02-18T05:00:00Z | 2016 | 2 | 2016-02-18T15:50:54Z | 0 | 0 | 0900006481e73b25 | ||||
| FNS-2016-0018-0007 | FNS | Enhancing Retailer Standards in the Supplemental Nutrition Assistance Program (SNAP) FNS-2016-0018 | SNAP-Retailer_Enhance_RFA _Final 1-4-2016 | Supporting & Related Material | 2016-02-18T05:00:00Z | 2016 | 2 | 2016-02-18T15:51:00Z | 0 | 0 | 0900006481e73b27 | ||||
| FNS-2016-0018-0001 | FNS | Enhancing Retailer Standards in the Supplemental Nutrition Assistance Program (SNAP) FNS-2016-0018 | Enhancing Retailer Standards in the Supplemental Nutrition Assistance Program | Proposed Rule | 2016-02-17T05:00:00Z | 2016 | 2 | 2016-02-17T05:00:00Z | 2016-04-19T03:59:59Z | 2016-04-18T22:00:37Z | 2016-03006 | 0 | 0 | 0900006481e71393 |
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;