documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "FDA-2017-N-4301" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, open_for_comment, withdrawn, posted_date (date), comment_start_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-2017-N-4301-0020 | FDA | None FDA-2017-N-4301 | Fostering Digital Health Innovation: Developing the Software Precertification Program; Public Workshop; Request for Comments | Notice | Request for Comments | 2017-12-08T05:00:00Z | 2017 | 12 | 2017-12-08T05:00:00Z | 2024-11-07T01:13:10Z | 2017-26457 | 1 | 0 | 0900006482cf2ac1 | |
| FDA-2017-N-4301-0019 | FDA | None FDA-2017-N-4301 | Software Pre-Cert Pilot Program Appraisal Model | Other | Letter(s) | 2017-12-01T05:00:00Z | 2017 | 12 | 2017-12-01T05:00:00Z | 2017-12-01T19:50:08Z | 0 | 0 | 0900006482ccbed9 | ||
| FDA-2017-N-4301-0008 | FDA | None FDA-2017-N-4301 | Request for Participation from Microsoft | Other | 2017-09-05T00:00:00Z | 2017 | 9 | 2017-09-27T16:41:34Z | 0 | 1 | 0900006482b0d6ad | ||||
| FDA-2017-N-4301-0005 | FDA | None FDA-2017-N-4301 | Request for Participation from IDEO | Other | Request | 2017-08-28T04:00:00Z | 2017 | 8 | 2017-08-28T04:00:00Z | 2017-08-28T16:41:11Z | 0 | 0 | 0900006482ae0838 | ||
| FDA-2017-N-4301-0001 | FDA | None FDA-2017-N-4301 | Fostering Medical Innovation: A Plan for Digital Health Devices; Software Precertification Pilot Program | Notice | Announcement | 2017-07-28T04:00:00Z | 2017 | 7 | 2017-07-28T04:00:00Z | 2024-11-07T01:06:57Z | 2017-15891 | 1 | 0 | 090000648297d807 |
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;