documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2009-M-0101" and posted_year = 2011 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), 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-M-0101-0040 | FDA | None FDA-2009-M-0101 | Philips Medical Systems Cardiac Care - Petition for Reclassification | Other | Change in Classification Petition | 2011-12-12T05:00:00Z | 2011 | 12 | 2011-12-12T05:00:00Z | 2013-07-28T00:10:31Z | 0 | 0 | 0900006480f80aac | ||
| FDA-2009-M-0101-0029 | FDA | None FDA-2009-M-0101 | Merit Medical Systems, Inc. - Information re FDA-2009-M-0101-DRAFT-0122 and 0043 | Supporting & Related Material | Reference (external attachments) | 2011-12-12T05:00:00Z | 2011 | 12 | 2011-12-12T19:22:58Z | 0 | 0 | 0900006480f80465 | |||
| FDA-2009-M-0101-0033 | FDA | None FDA-2009-M-0101 | Appendix B - Cited Articles re Smiths Medical ASD, Inc. - Information FDA-2009-M-0101-DRAFT-0033 | Supporting & Related Material | Reference (external attachments) | 2011-12-12T05:00:00Z | 2011 | 12 | 2011-12-12T21:54:31Z | 0 | 0 | 0900006480f809f8 | |||
| FDA-2009-M-0101-0037 | FDA | None FDA-2009-M-0101 | Leonhard Lang - Petition for Reclassification re FDA-2009-M-0101-0111 | Other | Change in Classification Petition | 2011-12-12T05:00:00Z | 2011 | 12 | 2011-12-12T05:00:00Z | 2013-08-11T01:44:59Z | 0 | 0 | 0900006480f80a51 | ||
| FDA-2009-M-0101-0028 | FDA | None FDA-2009-M-0101 | American Academy of Orthopaedic Surgeons (AAOS) - [(re Orthopedic Surgical Manufacturers Association (OSMA) - Petition for Reclassification) - Comment] - Background Material | Supporting & Related Material | Change in Classification Petition | 2011-07-25T04:00:00Z | 2011 | 7 | 2011-07-25T23:12:40Z | 0 | 0 | 0900006480eca49e | |||
| FDA-2009-M-0101-0027 | FDA | None FDA-2009-M-0101 | Appendix IV - Copies of Reference Literature (Spire Biomedical Incorporated - Petition for Reclassification) re FDA-2009-M-0101-0046 | Supporting & Related Material | Change in Classification Petition | 2011-07-25T04:00:00Z | 2011 | 7 | 2012-06-15T19:50:19Z | 0 | 0 | 0900006480b4686a | |||
| FDA-2009-M-0101-0023 | FDA | None FDA-2009-M-0101 | Bard Access Systems, Inc. - Information | Supporting & Related Material | Information Collection Documentation | 2011-07-25T04:00:00Z | 2011 | 7 | 2011-12-12T19:04:57Z | 0 | 0 | 0900006480b4683e | |||
| FDA-2009-M-0101-0026 | FDA | None FDA-2009-M-0101 | Zimmer, Inc. - Information re FDA-2009-M-0101-0094 | Supporting & Related Material | Information Collection Documentation | 2011-07-25T04:00:00Z | 2011 | 7 | 2013-05-24T21:10:15Z | 0 | 0 | 0900006480a18ae7 |
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;