documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FDA-2011-F-0172" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, open_for_comment, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FDA-2011-F-0172-0573 | FDA | None FDA-2011-F-0172 | A Labeling Guide for Restaurants and Retail Establishments Selling Away- From-Home Foods—Part II (Menu Labeling Requirements in Accordance with the Patient Protection Affordable Care Act of 2010); Draft Guidance for Industry; Availability | Proposed Rule | GDL Guidance | 2015-09-16T04:00:00Z | 2015 | 9 | 2015-09-16T04:00:00Z | 2015-11-03T04:59:59Z | 2015-11-04T02:30:26Z | 2015-23232 | 0 | 0 | 0900006481c72826 |
| FDA-2011-F-0172-0574 | FDA | None FDA-2011-F-0172 | A Labeling Guide for Restaurants and Retail Establishments Selling Away- From-Home Foods—Part II (Menu Labeling Requirements in Accordance with 21 CFR 101.11); Draft Guidance for Industry | Other | Guidance | 2015-09-16T04:00:00Z | 2015 | 9 | 2015-09-16T04:00:00Z | 2024-11-12T04:39:56Z | 1 | 0 | 0900006481c78d76 | ||
| FDA-2011-F-0172-0557 | FDA | None FDA-2011-F-0172 | Food Labeling; Nutrition Labeling of Standard Menu Items in Restaurants and Similar Retail Food Establishments; Extension of Compliance Date | Rule | Final Rule | 2015-07-10T04:00:00Z | 2015 | 7 | 2015-07-10T04:00:00Z | 2015-07-10T13:29:05Z | 2015-16865 | 0 | 0 | 0900006481b78dbf | |
| FDA-2011-F-0172-0556 | FDA | None FDA-2011-F-0172 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approval; Food Labeling; Nutrition Labeling of Standard Menu Items in Restaurants and Similar Retail Food Establishments | Notice | Information Collection Request (ICR) | 2015-04-03T04:00:00Z | 2015 | 4 | 2015-04-03T04:00:00Z | 2015-04-03T15:15:06Z | 2015-07655 | 0 | 0 | 0900006481a8ace1 | |
| FDA-2011-F-0172-0554 | FDA | None FDA-2011-F-0172 | Nutrition Labeling of Standard Menu Items in Restaurants and Similar Retail Food Establishments; Small Entity Compliance Guide | Rule | Final Rule with Request for Comments | 2015-03-13T04:00:00Z | 2015 | 3 | 2015-03-13T04:00:00Z | 2015-03-13T17:04:23Z | 2015-05590 | 0 | 0 | 0900006481a42966 | |
| FDA-2011-F-0172-0555 | FDA | None FDA-2011-F-0172 | Guidance for Industry; Nutrition Labeling of Standard Menu Items in Restaurants and Similar Retail Food Establishments; Small Entity Compliance Guide | Other | Guidance | 2015-03-13T04:00:00Z | 2015 | 3 | 2015-03-13T04:00:00Z | 2024-11-07T23:12:24Z | 1 | 0 | 0900006481a43e6a |
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;