documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FDA-2007-0545" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
agency_id 1
- FDA 10
| 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-2007-0545-0063 | FDA | None FDA-2007-0545 | Salt and Sodium Public Hearing Agenda | Supporting & Related Material | BKG-Background Material | 2008-08-13T04:00:00Z | 2008 | 8 | 2008-08-13T18:43:06Z | 0 | 0 | 09000064803f8722 | |||
| FDA-2007-0545-0066 | FDA | None FDA-2007-0545 | FDA/CFSAN - "Regulatory Framework for Nutrition Labeling" - Presentation | Supporting & Related Material | BKG-Background Material | 2008-08-13T04:00:00Z | 2008 | 8 | 2008-08-13T18:43:08Z | 0 | 0 | 09000064803f8739 | |||
| FDA-2007-0545-0062 | FDA | None FDA-2007-0545 | Salt and Sodium Public Hearing Registration List | Supporting & Related Material | BKG-Background Material | 2008-08-13T04:00:00Z | 2008 | 8 | 2008-08-13T18:43:04Z | 0 | 0 | 09000064803f8704 | |||
| FDA-2007-0545-0068 | FDA | None FDA-2007-0545 | CSPI - "FDA Public Hearing on Salt Held on November 29, 2007" - Presentation | Supporting & Related Material | BKG-Background Material | 2008-08-13T04:00:00Z | 2008 | 8 | 2008-08-13T18:43:10Z | 0 | 0 | 09000064803f873f | |||
| FDA-2007-0545-0064 | FDA | None FDA-2007-0545 | Salt and Sodium Public Hearing Information | Supporting & Related Material | BKG-Background Material | 2008-08-13T04:00:00Z | 2008 | 8 | 2008-08-13T18:43:07Z | 0 | 0 | 09000064803f8728 | |||
| FDA-2007-0545-0067 | FDA | None FDA-2007-0545 | FDA/CFSAN - "Review of Issues and Questions" - Presentation | Supporting & Related Material | BKG-Background Material | 2008-08-13T04:00:00Z | 2008 | 8 | 2008-08-13T18:43:09Z | 0 | 0 | 09000064803f873d | |||
| FDA-2007-0545-0065 | FDA | None FDA-2007-0545 | FDA/CFSAN - Regulatory Status of Salt in the United States - Presentation | Supporting & Related Material | BKG-Background Material | 2008-08-13T04:00:00Z | 2008 | 8 | 2008-08-13T18:43:07Z | 0 | 0 | 09000064803f872e | |||
| FDA-2007-0545-0048 | FDA | None FDA-2007-0545 | Salt and Sodium; Petition to Revise the Regulatory Status of Salt and Establish Food Labeling Requirements Regarding Salt and Sodium; Public Hearing; Reopening of the Comment Period | Notice | NEC-Notice of Extension | 2008-06-11T04:00:00Z | 2008 | 6 | 2008-06-11T04:00:00Z | 2008-08-12T03:59:59Z | 2008-08-13T16:50:17Z | 0 | 0 | 090000648061e7f3 | |
| FDA-2007-0545-0018 | FDA | None FDA-2007-0545 | Public Hearing - Regulatory Hearing on Salt and Sodium - Transcript November 29, 2007 | Other | TR-Transcript | 2008-03-14T04:00:00Z | 2008 | 3 | 2008-03-14T04:00:00Z | 2008-03-15T03:53:16Z | 0 | 0 | 09000064803f8862 | ||
| FDA-2007-0545-0001 | FDA | None FDA-2007-0545 | Salt and Sodium; Petition to Revise the Regulatory Status of Salt and Establish Food Labeling Requirements Regarding Salt and Sodium; Public Hearing; Request for Comments | Proposed Rule | NH-Notice of Hearing | 2007-10-23T04:00:00Z | 2007 | 10 | 2007-10-23T04:00:00Z | 2008-03-29T03:59:59Z | 2011-04-07T21:16:56Z | 07-05216 | 0 | 0 | 09000064803550a8 |
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;