documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FDA-2019-D-0892" 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)
document_type 4
agency_id 1
- FDA 9
| 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-2019-D-0892-0088 | FDA | None FDA-2019-D-0892 | The Use of an Alternate Name for Potassium Chloride in Food Labeling; Guidance for Industry; Availability | Rule | Policy Statement | 2020-12-18T05:00:00Z | 2020 | 12 | 2020-12-18T05:00:00Z | 2020-12-21T13:08:20Z | 2020-27750 | 0 | 0 | 09000064849a709a | |
| FDA-2019-D-0892-0087 | FDA | None FDA-2019-D-0892 | The Use of an Alternate Name for Potassium Chloride in Food Labeling: Guidance for Industry: Final Guidance | Other | Guidance | 2020-12-18T05:00:00Z | 2020 | 12 | 2020-12-18T05:00:00Z | 2024-11-12T23:27:10Z | 1 | 0 | 09000064849a777a | ||
| FDA-2019-D-0892-0023 | FDA | None FDA-2019-D-0892 | The Use of an Alternate Name for Potassium Chloride in Food Labeling; Draft Guidance for Industry; Extension of Comment Period | Proposed Rule | Extension of Comment Period | 2019-07-10T04:00:00Z | 2019 | 7 | 2019-07-10T04:00:00Z | 2019-09-18T03:59:59Z | 2019-09-19T01:04:17Z | 2019-14666 | 0 | 0 | 0900006483d74b33 |
| FDA-2019-D-0892-0021 | FDA | None FDA-2019-D-0892 | Request for Extension from Food and Beverage Issue Alliance | Other | Request for Extension | 2019-06-18T04:00:00Z | 2019 | 6 | 2019-06-18T04:00:00Z | 2019-06-18T16:05:49Z | 0 | 0 | 0900006483d1a3b6 | ||
| FDA-2019-D-0892-0004 | FDA | None FDA-2019-D-0892 | Mortality in the United States, 2016 RE: The Use of an Alternate Name for Potassium Chloride in Food Labeling: Guidance for Industry Draft Guidance | Supporting & Related Material | Background Material | 2019-05-21T04:00:00Z | 2019 | 5 | 2019-05-21T13:51:11Z | 0 | 0 | 0900006483ca6f61 | |||
| FDA-2019-D-0892-0003 | FDA | None FDA-2019-D-0892 | Dietary Guidelines for Americans 2015-2020 Eight Edition RE: The Use of an Alternate Name for Potassium Chloride in Food Labeling: Guidance for Industry Draft Guidance | Supporting & Related Material | Background Material | 2019-05-21T04:00:00Z | 2019 | 5 | 2020-01-31T06:57:53Z | 0 | 0 | 0900006483ca6ba3 | |||
| FDA-2019-D-0892-0005 | FDA | None FDA-2019-D-0892 | Potassium Fact Sheet for Health Professionals RE: The Use of an Alternate Name for Potassium Chloride in Food Labeling: Guidance for Industry Draft Guidance | Supporting & Related Material | Background Material | 2019-05-21T04:00:00Z | 2019 | 5 | 2019-05-21T13:51:18Z | 0 | 0 | 0900006483ca6f62 | |||
| FDA-2019-D-0892-0001 | FDA | None FDA-2019-D-0892 | The Use of an Alternate Name for Potassium Chloride in Food Labeling; Draft Guidance for Industry; Availability | Proposed Rule | GDL Guidance | 2019-05-20T04:00:00Z | 2019 | 5 | 2019-05-20T04:00:00Z | 2019-07-20T03:59:59Z | 2019-07-11T01:05:50Z | 2019-10401 | 0 | 0 | 0900006483ca0db2 |
| FDA-2019-D-0892-0002 | FDA | None FDA-2019-D-0892 | The Use of an Alternate Name for Potassium Chloride in Food Labeling: Guidance for Industry; Draft Guidance | Other | Guidance | 2019-05-17T04:00:00Z | 2019 | 5 | 2019-05-17T04:00:00Z | 2024-11-12T23:01:28Z | 1 | 0 | 0900006483ca2a2f |
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;