documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2017-D-6569" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, comment_end_date, open_for_comment, 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-2017-D-6569-0118 | FDA | None FDA-2017-D-6569 | Clinical Decision Support Software Guidance for Industry and Food and Drug Administration Staff | Other | Guidance | 2026-01-30T05:00:00Z | 2026 | 1 | 2026-01-30T05:00:00Z | 2026-01-31T04:06:30Z | 1 | 0 | 09000064b9189d3e | ||
| FDA-2017-D-6569-0116 | FDA | None FDA-2017-D-6569 | Clinical Decision Support Software Guidance for Industry and Food and Drug Administration Staff | Other | Guidance | 2026-01-06T05:00:00Z | 2026 | 1 | 2026-01-06T05:00:00Z | 2026-02-10T01:56:02Z | 0 | 0 | 09000064b911be84 | ||
| FDA-2017-D-6569-0114 | FDA | None FDA-2017-D-6569 | Clinical Decision Support Software; Guidance for Industry and Food and Drug Administration Staff; Final Guidance | Other | Guidance | 2022-09-28T04:00:00Z | 2022 | 9 | 2022-09-28T04:00:00Z | 2026-01-07T23:24:41Z | 0 | 0 | 0900006485379fdf | ||
| FDA-2017-D-6569-0113 | FDA | None FDA-2017-D-6569 | Clinical Decision Support Software; Guidance for Industry and Food and Drug Administration Staff; Availability | Notice | Notice of Availability | 2022-09-28T04:00:00Z | 2022 | 9 | 2022-09-28T04:00:00Z | 2022-09-28T14:38:06Z | 2022-20993 | 0 | 0 | 090000648537905f | |
| FDA-2017-D-6569-0041 | FDA | None FDA-2017-D-6569 | Clinical Decision Support Software: Draft Guidance for Industry and Food and Drug Administration Staff | Other | Guidance | 2019-09-27T04:00:00Z | 2019 | 9 | 2019-09-27T04:00:00Z | 2019-12-27T04:59:59Z | 2022-09-28T15:17:03Z | 0 | 0 | 0900006483fdea65 | |
| FDA-2017-D-6569-0040 | FDA | None FDA-2017-D-6569 | Clinical Decision Support Software; Draft Guidance for Industry and Food and Drug Administration Staff; Availability | Notice | Notice of Availability | 2019-09-27T04:00:00Z | 2019 | 9 | 2019-09-27T04:00:00Z | 2019-12-27T04:59:59Z | 2019-12-28T02:00:55Z | 2019-21000 | 0 | 0 | 0900006483fdd63f |
| FDA-2017-D-6569-0001 | FDA | None FDA-2017-D-6569 | Clinical and Patient Decision Support Software; Draft Guidance for Industry and Food and Drug Administration Staff; Availability | Notice | Notice of Availability | 2017-12-08T05:00:00Z | 2017 | 12 | 2017-12-08T05:00:00Z | 2018-03-16T03:59:59Z | 2019-10-23T14:25:18Z | 2017-26439 | 0 | 0 | 0900006482cf2a39 |
| FDA-2017-D-6569-0002 | FDA | None FDA-2017-D-6569 | Clinical and Patient Decision Support Software Draft Guidance | Other | Guidance | 2017-12-08T05:00:00Z | 2017 | 12 | 2017-12-08T05:00:00Z | 2019-10-23T14:25:41Z | 0 | 0 | 0900006482cf3ad7 |
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;