documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FDA-2018-N-3303" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, 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-2018-N-3303-0008 | FDA | None FDA-2018-N-3303 | Reference 5 - ADA Dental Radiographic Examinations 2012 | Supporting & Related Material | Background Material | 2019-06-07T04:00:00Z | 2019 | 6 | 2019-06-07T19:56:01Z | 0 | 0 | 0900006483cf8421 | |||
| FDA-2018-N-3303-0011 | FDA | None FDA-2018-N-3303 | Reference 11 - ICRP Radiological Protection in Medicine Pub. 105 | Supporting & Related Material | Background Material | 2019-06-07T04:00:00Z | 2019 | 6 | 2019-06-07T20:00:50Z | 0 | 0 | 0900006483cf8425 | |||
| FDA-2018-N-3303-0009 | FDA | None FDA-2018-N-3303 | Reference 6 - CRCPD, “Part F-Medical Diagnostic and Interventional X-ray Imaging and Systems 2015 | Supporting & Related Material | Background Material | 2019-06-07T04:00:00Z | 2019 | 6 | 2019-06-07T19:57:01Z | 0 | 0 | 0900006483cf8422 | |||
| FDA-2018-N-3303-0006 | FDA | None FDA-2018-N-3303 | Reference 3 - EPA Report No 14_ Radiation Protection Guidance | Supporting & Related Material | Background Material | 2019-06-07T04:00:00Z | 2019 | 6 | 2019-06-07T19:52:58Z | 0 | 0 | 0900006483cf841f | |||
| FDA-2018-N-3303-0012 | FDA | None FDA-2018-N-3303 | Reference 12 - NCRP Report 172 | Supporting & Related Material | Background Material | 2019-06-07T04:00:00Z | 2019 | 6 | 2019-06-07T20:02:52Z | 0 | 0 | 0900006483cf8426 | |||
| FDA-2018-N-3303-0005 | FDA | None FDA-2018-N-3303 | Rad Health PR PRIA FINAL VERSION | Supporting & Related Material | Background Material | 2019-06-07T04:00:00Z | 2019 | 6 | 2019-06-07T19:42:23Z | 0 | 0 | 0900006483cf2f3b | |||
| FDA-2018-N-3303-0013 | FDA | None FDA-2018-N-3303 | Reference 15 - NCRP Report 160 | Supporting & Related Material | Background Material | 2019-06-07T04:00:00Z | 2019 | 6 | 2019-06-07T20:04:19Z | 0 | 0 | 0900006483cf8431 | |||
| FDA-2018-N-3303-0007 | FDA | None FDA-2018-N-3303 | Reference 4 - NCRP Report No 145 | Supporting & Related Material | Background Material | 2019-06-07T04:00:00Z | 2019 | 6 | 2019-06-07T19:54:17Z | 0 | 0 | 0900006483cf8420 | |||
| FDA-2018-N-3303-0010 | FDA | None FDA-2018-N-3303 | Reference 9 - NCRP Report 168 | Supporting & Related Material | Background Material | 2019-06-07T04:00:00Z | 2019 | 6 | 2019-06-07T19:59:20Z | 0 | 0 | 0900006483cf8423 | |||
| FDA-2018-N-3303-0001 | FDA | None FDA-2018-N-3303 | Radiological Health Regulations; Amendments to Records and Reports for Radiation Emitting Electronic Products; Amendments to Performance Standards for Diagnostic X-Ray, Laser and Ultrasonic Products | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2019-04-01T04:00:00Z | 2019 | 4 | 2019-04-01T04:00:00Z | 2019-07-02T03:59:59Z | 2019-07-02T01:01:57Z | 2019-05822 | 0 | 0 | 0900006483b51258 |
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;