documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "FDA-2014-N-0987" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-2014-N-0987-0006 | FDA | None FDA-2014-N-0987 | Agency Information Collection Activities; Proposed Collection; Comment Request; Generic Clearance for the Collection of Qualitative Data on Tobacco Products and Communications | Notice | 60 Day Proposed Information Collection | 2014-12-12T05:00:00Z | 2014 | 12 | 2014-12-12T05:00:00Z | 2014-10-01T03:59:59Z | 2014-12-13T03:07:08Z | 2014-18195 | 0 | 0 | 0900006481973c49 |
| FDA-2014-N-0987-0005 | FDA | None FDA-2014-N-0987 | Agency Information Collection Activities; Proposed Collection; Comment Request; Generic Clearance for the Collection of Qualitative Data on Tobacco Products and Communications; Correction | Notice | Correction | 2014-12-09T05:00:00Z | 2014 | 12 | 2014-12-09T05:00:00Z | 2014-12-12T23:31:53Z | 2014-28714 | 0 | 0 | 090000648196810f | |
| FDA-2014-N-0987-0004 | FDA | None FDA-2014-N-0987 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Generic Clearance for the Collection of Qualitative Data on Tobacco Products and Communications | Notice | 30 Day Proposed Information Collection | 2014-12-08T05:00:00Z | 2014 | 12 | 2014-12-08T05:00:00Z | 2014-12-09T04:59:59Z | 2014-12-12T23:38:02Z | 2014-28635 | 0 | 0 | 0900006481963f5e |
| FDA-2014-N-0987-0003 | FDA | None FDA-2014-N-0987 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Generic Clearance for the Collection of Quantitative Data on Tobacco Products and Communications | Notice | 30 Day Proposed Information Collection | 2014-11-28T05:00:00Z | 2014 | 11 | 2014-11-28T05:00:00Z | 2014-11-29T04:59:59Z | 2014-12-12T23:37:08Z | 2014-28106 | 0 | 0 | 090000648194b257 |
| FDA-2014-N-0987-0001 | FDA | None FDA-2014-N-0987 | Agency Information Collection Activities; Proposed Collection; Comment Request; Quantitative Testing as Used by the Food and Drug Administration Center for Tobacco Products | Notice | 60 Day Proposed Information Collection | 2014-07-17T04:00:00Z | 2014 | 7 | 2014-07-17T04:00:00Z | 2014-09-16T03:59:59Z | 2014-12-12T22:59:36Z | 2014-16795 | 0 | 0 | 09000064817b3b38 |
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;