documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FDA-2015-N-1765" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_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-1765-0998 | FDA | None FDA-2015-N-1765 | Reference 31a - Correction to Cutaneous Melanoma Attributable to Sunbed Use | Supporting & Related Material | Background Material | 2016-05-20T04:00:00Z | 2016 | 5 | 2016-05-20T20:15:47Z | 0 | 0 | 0900006481fe537b | |||
| FDA-2015-N-1765-0999 | FDA | None FDA-2015-N-1765 | PRIA Reference 10 - Cost analysis of sunlamp performance standards | Supporting & Related Material | Background Material | 2016-05-20T04:00:00Z | 2016 | 5 | 2016-05-20T20:18:04Z | 0 | 0 | 0900006481fe537c | |||
| FDA-2015-N-1765-0281 | FDA | None FDA-2015-N-1765 | Tab A Original NPRM to OMB 9-9-14 re General and Plastic Surgery Devices: Restricted Sale, Distribution, and Use of Sunlamp Products | Supporting & Related Material | Background Material | 2016-03-09T05:00:00Z | 2016 | 3 | 2016-03-09T14:42:29Z | 0 | 0 | 0900006481eb4c6c | |||
| FDA-2015-N-1765-0282 | FDA | None FDA-2015-N-1765 | Tab A Original PRIA Sunlamp Restriction 9-9-14 re General and Plastic Surgery Devices: Restricted Sale, Distribution, and Use of Sunlamp Products | Supporting & Related Material | Background Material | 2016-03-09T05:00:00Z | 2016 | 3 | 2016-03-09T14:42:06Z | 0 | 0 | 0900006481eb4c6d | |||
| FDA-2015-N-1765-0283 | FDA | None FDA-2015-N-1765 | Tab B NPRM 2012-574 OMB Redlines to Proposed Rule re General and Plastic Surgery Devices: Restricted Sale, Distribution, and Use of Sunlamp Products | Supporting & Related Material | Background Material | 2016-03-09T05:00:00Z | 2016 | 3 | 2016-03-09T14:41:38Z | 0 | 0 | 0900006481eb4c6e | |||
| FDA-2015-N-1765-0285 | FDA | None FDA-2015-N-1765 | Tab C NPRM To OFR 12-17-15 re General and Plastic Surgery Devices: Restricted Sale, Distribution, and Use of Sunlamp Products | Supporting & Related Material | Background Material | 2016-03-09T05:00:00Z | 2016 | 3 | 2016-03-09T14:40:47Z | 0 | 0 | 0900006481eb4c70 | |||
| FDA-2015-N-1765-0280 | FDA | None FDA-2015-N-1765 | Memo to Docket Sunlamp Restriction Post Pub Package re General and Plastic Surgery Devices: Restricted Sale, Distribution, and Use of Sunlamp Products | Supporting & Related Material | Background Material | 2016-03-09T05:00:00Z | 2016 | 3 | 2016-03-09T14:42:55Z | 0 | 0 | 0900006481eb4c6b | |||
| FDA-2015-N-1765-0286 | FDA | None FDA-2015-N-1765 | Tab C PRIA Clean 10-30-15 [1] ROCIS re General and Plastic Surgery Devices: Restricted Sale, Distribution, and Use of Sunlamp Products | Supporting & Related Material | Background Material | 2016-03-09T05:00:00Z | 2016 | 3 | 2016-03-09T14:40:22Z | 0 | 0 | 0900006481eb52a0 | |||
| FDA-2015-N-1765-0284 | FDA | None FDA-2015-N-1765 | Tab B PRIA 2012-574 OMB Revisions Redline re General and Plastic Surgery Devices: Restricted Sale, Distribution, and Use of Sunlamp Products | Supporting & Related Material | Background Material | 2016-03-09T05:00:00Z | 2016 | 3 | 2016-03-09T14:41:13Z | 0 | 0 | 0900006481eb4c6f |
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;