documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FDA-2010-D-0194" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2010-D-0194-0025 | FDA | None FDA-2010-D-0194 | Infusion Pumps Total Product Life Cycle; Guidance for Industry and FDA Administration Staff | Other | Guidance | 2014-12-02T05:00:00Z | 2014 | 12 | 2014-12-02T05:00:00Z | 2024-11-12T05:33:07Z | 1 | 0 | 090000648195509a | ||
| FDA-2010-D-0194-0024 | FDA | None FDA-2010-D-0194 | Infusion Pumps Total Product Life Cycle; Guidance for Industry and Food and Drug Administration Staff; Availability | Notice | Notice of Availability | 2014-12-02T05:00:00Z | 2014 | 12 | 2014-12-02T05:00:00Z | 2014-12-02T17:21:26Z | 2014-28267 | 0 | 0 | 0900006481953fe6 | |
| FDA-2010-D-0194-0023 | FDA | None FDA-2010-D-0194 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approval; Safety Assurance Case | Notice | Notice of Approval | 2014-06-09T04:00:00Z | 2014 | 6 | 2014-06-09T04:00:00Z | 2014-06-09T14:13:09Z | 2014-13291 | 0 | 0 | 09000064817301bd | |
| FDA-2010-D-0194-0022 | FDA | None FDA-2010-D-0194 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Draft Guidance for Industry and FDA Staff; Total Product Life Cycle: Infusion Pump—Premarket Notification Submissions | Notice | General Notice | 2014-04-09T04:00:00Z | 2014 | 4 | 2014-04-09T04:00:00Z | 2014-05-10T03:59:59Z | 2014-05-13T14:33:58Z | 2014-07915 | 0 | 0 | 09000064816aadb0 |
| FDA-2010-D-0194-0018 | FDA | None FDA-2010-D-0194 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Draft Guidance for Industry and FDA Staff; Total Product Life Cycle, Infusion Pump - Premarket Notification Submissions | Notice | General Notice | 2013-03-18T04:00:00Z | 2013 | 3 | 2013-03-18T04:00:00Z | 2013-05-18T03:59:59Z | 2013-05-18T01:02:14Z | 2013-06128 | 0 | 0 | 0900006481232915 |
| FDA-2010-D-0194-0002 | FDA | None FDA-2010-D-0194 | Guidance for Industry and FDA Staff; Total Product Life Cycle: Infusion Pump – Premarket Notification (510(k)) Submissions; Draft Guidance | Other | GDL-Guidance (Supporting and Related Materials) | 2010-07-01T04:00:00Z | 2010 | 7 | 2010-07-01T04:00:00Z | 2010-07-27T03:59:59Z | 2024-11-07T22:19:47Z | 1 | 0 | 0900006480b1071d | |
| FDA-2010-D-0194-0001 | FDA | None FDA-2010-D-0194 | Draft Guidance for Industry and FDA Staff; Total Product Life Cycle: Infusion Pump – Premarket Notification (510(k)) Submissions; Availability | Notice | NAD-Notice of Availability of Data | 2010-07-01T04:00:00Z | 2010 | 7 | 2010-07-01T04:00:00Z | 2010-07-27T03:59:59Z | 2010-07-01T17:09:39Z | 2010-2909 | 0 | 0 | 0900006480b10719 |
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;