documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2009-N-0493" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, last_modified, 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-2009-N-0493-0013 | FDA | None FDA-2009-N-0493 | Neurological and Physical Medicine Devices; Designation of Special Controls for Certain Class II Devices and Exemption From Premarket Notification; Reopening of the Comment Period | Proposed Rule | NEC-Notice of Extension | 2010-07-28T04:00:00Z | 2010 | 7 | 2010-07-28T04:00:00Z | 2010-09-08T03:59:59Z | 2011-06-11T16:28:09Z | 2010-18405 | 0 | 0 | 0900006480b22691 |
| FDA-2009-N-0493-0011 | FDA | None FDA-2009-N-0493 | Electrostim Medical Solutions (EMSI), Inc. - Request for Extension of Comment Due Date | Other | EXT-Request for Extension Comment Due Date | 2010-07-08T04:00:00Z | 2010 | 7 | 2010-07-08T04:00:00Z | 2011-06-11T16:28:08Z | 0 | 0 | 0900006480b0c7c3 | ||
| FDA-2009-N-0493-0010 | FDA | None FDA-2009-N-0493 | RS Medical - Request for Extension of Comment Due Date | Other | EXT-Request for Extension Comment Due Date | 2010-07-06T04:00:00Z | 2010 | 7 | 2010-07-06T04:00:00Z | 2013-08-11T04:40:57Z | 0 | 0 | 0900006480b11a38 | ||
| FDA-2009-N-0493-0009 | FDA | None FDA-2009-N-0493 | DJO LLC - Request for Extension of Comment Due Date | Other | EXT-Request for Extension Comment Due Date | 2010-07-06T04:00:00Z | 2010 | 7 | 2010-07-06T04:00:00Z | 2013-07-27T23:23:16Z | 0 | 0 | 0900006480b09be5 | ||
| FDA-2009-N-0493-0003 | FDA | None FDA-2009-N-0493 | Tab A - "Draft Regulatory Action, May 3, 2010" - [OMB Review, Executive Order 12866, Regulatory Policy Management Staff to the Division of Dockets Management, (Neurological and Physical Medicine Devices; Designation of Special Controls for Certain Class II Devices and Exemption From Premarket Notification, Proposed Rule, April 5, 2010)] | Supporting & Related Material | REF-Reference (internal unless indicated) | 2010-05-05T04:00:00Z | 2010 | 5 | 2011-06-11T16:28:08Z | 0 | 0 | 0900006480ae68c5 | |||
| FDA-2009-N-0493-0002 | FDA | None FDA-2009-N-0493 | OMB Review, Executive Order 12866, Regulatory Policy Management Staff to the Division of Dockets Management, April 5, 2010" - [Neurological and Physical Medicine Devices; Designation of Special Controls for Certain Class II Devices and Exemption From Premarket Notification (Proposed Rule)] | Other | REF-Reference Material (internal attachments) | 2010-05-05T04:00:00Z | 2010 | 5 | 2010-05-05T04:00:00Z | 2013-08-11T03:08:17Z | 0 | 0 | 0900006480ae61bd | ||
| FDA-2009-N-0493-0004 | FDA | None FDA-2009-N-0493 | Tab B - "Substantive Changes and Changes in the Regulatory Action, May 3, 2010" - [OMB Review, Executive Order 12866, Regulatory Policy Management Staff to the Division of Dockets Management, (Neurological and Physical Medicine Devices; Designation of Special Controls for Certain Class II Devices and Exemption From Premarket Notification, Proposed Rule, April 5, 2010)] | Supporting & Related Material | REF-Reference (internal unless indicated) | 2010-05-05T04:00:00Z | 2010 | 5 | 2011-06-11T16:28:07Z | 0 | 0 | 0900006480ae6fff | |||
| FDA-2009-N-0493-0001 | FDA | None FDA-2009-N-0493 | Neurological and Physical Medicine Devices: Designation of Special Controls for Certain Class II Devices and Exemption From Premarket Notification | Proposed Rule | NPR-Notice of Proposed Rule-Making | 2010-04-05T04:00:00Z | 2010 | 4 | 2010-04-05T04:00:00Z | 2010-07-07T03:59:59Z | 2011-06-11T16:28:06Z | 2010-07637 | 0 | 0 | 0900006480acfcd0 |
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;