documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FDA-2015-N-2126" 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-2015-N-2126-0019 | FDA | None FDA-2015-N-2126 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2019-06-11T04:00:00Z | 2019 | 6 | 2019-06-11T04:00:00Z | 2019-06-12T13:24:33Z | 2019-12278 | 0 | 0 | 0900006483d036e9 | |
| FDA-2015-N-2126-0016 | FDA | None FDA-2015-N-2126 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Food and Drug Administration’s Research and Evaluation Survey for the Public Education Campaign on Tobacco Among the Lesbian Gay Bisexual Transgender Community | Notice | 30 Day Proposed Information Collection | 2018-12-07T05:00:00Z | 2018 | 12 | 2018-12-07T05:00:00Z | 2019-01-08T04:59:59Z | 2019-01-08T02:04:10Z | 2018-26555 | 0 | 0 | 090000648395870a |
| FDA-2015-N-2126-0006 | FDA | None FDA-2015-N-2126 | Agency Information Collection Activities; Proposed Collection; Comment Request; Food and Drug Administration’s Research and Evaluation Survey for the Public Education Campaign on Tobacco Among the Lesbian Gay Bisexual Transgender Community | Notice | 60 Day Proposed Information Collection | 2018-08-02T04:00:00Z | 2018 | 8 | 2018-08-02T04:00:00Z | 2018-10-02T03:59:59Z | 2018-10-02T00:11:18Z | 2018-16538 | 0 | 0 | 09000064835bb9fc |
| FDA-2015-N-2126-0005 | FDA | None FDA-2015-N-2126 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approval; Food and Drug Administration’s Research and Evaluation Survey for the Public Education Campaign on Tobacco Among LGBT (RESPECT) | Notice | Notice of Approval | 2016-02-29T05:00:00Z | 2016 | 2 | 2016-02-29T05:00:00Z | 2016-02-29T17:37:08Z | 2016-04277 | 0 | 0 | 0900006481e8f41d | |
| FDA-2015-N-2126-0002 | FDA | None FDA-2015-N-2126 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Evaluation of the Food and Drug Administration’s Campaign To Reduce Tobacco Use Among Lesbian, Gay, Bisexual, and Transgender Young Adults | Notice | 30 Day Proposed Information Collection | 2015-10-21T04:00:00Z | 2015 | 10 | 2015-10-21T04:00:00Z | 2015-11-21T04:59:59Z | 2015-11-19T22:00:21Z | 2015-26671 | 0 | 0 | 0900006481cdc754 |
| FDA-2015-N-2126-0001 | FDA | None FDA-2015-N-2126 | Agency Information Collection Activities; Proposed Collection; Comment Request; Evaluation of the Food and Drug Administration’s Campaign To Reduce Tobacco Use Among Lesbian, Gay, Bisexual, and Transgender Young Adults | Notice | 60 Day Proposed Information Collection | 2015-06-30T04:00:00Z | 2015 | 6 | 2015-06-30T04:00:00Z | 2015-09-01T03:59:59Z | 2015-07-02T01:30:32Z | 2015-16020 | 0 | 0 | 0900006481b5dc58 |
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;