documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FDA-2015-D-2496" 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 7
| 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-2015-D-2496-0049 | FDA | None FDA-2015-D-2496 | Premarket Tobacco Product Applications for Electronic Nicotine Delivery Systems; Guidance for Industry; Availability | Notice | Notice of Availability | 2019-06-12T04:00:00Z | 2019 | 6 | 2019-06-12T04:00:00Z | 2019-06-12T16:14:33Z | 2019-12389 | 0 | 0 | 0900006483d08159 | |
| FDA-2015-D-2496-0050 | FDA | None FDA-2015-D-2496 | Premarket Tobacco Product Applications for Electronic Nicotine Delivery Systems; Guidance for Industry | Other | Guidance | 2019-06-12T04:00:00Z | 2019 | 6 | 2019-06-12T04:00:00Z | 2024-11-12T23:03:16Z | 1 | 0 | 0900006483d09321 | ||
| FDA-2015-D-2496-0041 | FDA | None FDA-2015-D-2496 | Philip Morris International Reduced Risk Products re Comment from Gregory Connolly, DMD, MPH | Supporting & Related Material | Background Material | 2016-07-22T04:00:00Z | 2016 | 7 | 2016-07-22T19:43:07Z | 0 | 0 | 09000064820f14c6 | |||
| FDA-2015-D-2496-0042 | FDA | None FDA-2015-D-2496 | Platforms Porfolio re Comment from Gregory Connolly, DMD, MPH | Supporting & Related Material | Background Material | 2016-07-22T04:00:00Z | 2016 | 7 | 2016-07-22T19:43:12Z | 0 | 0 | 09000064820f14c7 | |||
| FDA-2015-D-2496-0040 | FDA | None FDA-2015-D-2496 | R.J. Reynolds Tobacco Company's VUSE Privacy Policy re Comment from Gregory Connolly, DMD, MPH | Supporting & Related Material | Background Material | 2016-07-22T04:00:00Z | 2016 | 7 | 2016-07-22T19:42:13Z | 0 | 0 | 09000064820f15da | |||
| FDA-2015-D-2496-0001 | FDA | None FDA-2015-D-2496 | Premarket Tobacco Product Applications for Electronic Nicotine Delivery Systems; Draft Guidance for Industry; Availability; Agency Information Collection Activities; Proposed Collection; Comment Request | Proposed Rule | Request for Comment | 2016-05-10T04:00:00Z | 2016 | 5 | 2016-05-10T04:00:00Z | 2016-07-12T03:59:59Z | 2016-07-22T15:20:45Z | 2016-10687 | 0 | 0 | 0900006481fbd968 |
| FDA-2015-D-2496-0002 | FDA | None FDA-2015-D-2496 | Premarket Tobacco Product Applications for Electronic Nicotine Delivery Systems Guidance for Industry DRAFT GUIDANCE | Other | Guidance | 2016-05-10T04:00:00Z | 2016 | 5 | 2016-05-10T04:00:00Z | 2024-11-11T21:27:53Z | 1 | 0 | 0900006481fbe155 |
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;