documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FDA-2016-D-2335" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date (date), comment_start_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-2016-D-2335-1375 | FDA | None FDA-2016-D-2335 | Tab A - FDA - Healthy Defn - NPRM (2018-491) original to OMB (9-29-21 version) RE Memorandum - Food Labeling: Nutrient Content Claims; Definition of Term Healthy, proposed rule | Supporting & Related Material | Background Material | 2023-01-09T05:00:00Z | 2023 | 1 | 2023-01-09T18:23:29Z | 0 | 0 | 09000064855c60aa | |||
| FDA-2016-D-2335-1378 | FDA | None FDA-2016-D-2335 | Tab B - FDA - Healthy Defn (2018-491) PRIA (comparision OMB original to final) RE Memorandum - Food Labeling: Nutrient Content Claims; Definition of Term Healthy, proposed rule | Supporting & Related Material | Background Material | 2023-01-09T05:00:00Z | 2023 | 1 | 2023-01-09T18:23:48Z | 0 | 0 | 09000064855c7141 | |||
| FDA-2016-D-2335-1374 | FDA | None FDA-2016-D-2335 | Memorandum - Food Labeling: Nutrient Content Claims; Definition of Term Healthy, proposed rule | Other | Memorandum | 2023-01-09T05:00:00Z | 2023 | 1 | 2023-01-09T05:00:00Z | 2023-01-09T18:21:53Z | 0 | 0 | 09000064855c60e4 | ||
| FDA-2016-D-2335-1376 | FDA | None FDA-2016-D-2335 | Tab A - FDA - Healthy Defn - PRIA (2018-491) original to OMB (9-29-21 version) RE Memorandum - Food Labeling: Nutrient Content Claims; Definition of Term Healthy, proposed rule | Supporting & Related Material | Background Material | 2023-01-09T05:00:00Z | 2023 | 1 | 2023-01-09T18:23:35Z | 0 | 0 | 09000064855c60e6 | |||
| FDA-2016-D-2335-1377 | FDA | None FDA-2016-D-2335 | Tab B - FDA - Healthy Defn (2018-491) NPRM (comparision OMB original to final) RE Memorandum - Food Labeling: Nutrient Content Claims; Definition of Term Healthy, proposed rule | Supporting & Related Material | Background Material | 2023-01-09T05:00:00Z | 2023 | 1 | 2023-01-09T18:23:41Z | 0 | 0 | 09000064855c60b1 | |||
| FDA-2016-D-2335-1379 | FDA | None FDA-2016-D-2335 | Tab C - FDA - Healthy - PRIA (2018-491) final to OMB (9-19-22 version) RE Memorandum - Food Labeling: Nutrient Content Claims; Definition of Term Healthy, proposed rule | Supporting & Related Material | Background Material | 2023-01-09T05:00:00Z | 2023 | 1 | 2023-01-09T18:23:53Z | 0 | 0 | 09000064855c7142 | |||
| FDA-2016-D-2335-1380 | FDA | None FDA-2016-D-2335 | Tab C - FDA - Healthy - RULE (2018-491) final to OMB (9-19-22 version) RE Memorandum - Food Labeling: Nutrient Content Claims; Definition of Term Healthy, proposed rule | Supporting & Related Material | Background Material | 2023-01-09T05:00:00Z | 2023 | 1 | 2023-01-09T18:23:59Z | 0 | 0 | 09000064855c714c |
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;