documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FDA-1995-N-0341" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, comment_start_date, 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-1995-N-0341-0007 | FDA | Reclassify Rigid Gas Permeable Contact Lens Solution - CLOSED FDA-1995-N-0341 | Response from Sarita Soni to Sally Thornton (FDA CDRH) | Other | Response(s) | 2017-01-23T05:00:00Z | 2017 | 1 | 2017-01-23T05:00:00Z | 2017-01-23T16:53:21Z | 0 | 0 | 0900006480599dda | ||
| FDA-1995-N-0341-0004 | FDA | Reclassify Rigid Gas Permeable Contact Lens Solution - CLOSED FDA-1995-N-0341 | Letter from University of Minnesota to R. Doyle Stulting | Other | Letter(s) | 2017-01-23T05:00:00Z | 2017 | 1 | 2017-01-23T05:00:00Z | 2017-01-23T16:31:16Z | 0 | 0 | 0900006480599dd6 | ||
| FDA-1995-N-0341-0006 | FDA | Reclassify Rigid Gas Permeable Contact Lens Solution - CLOSED FDA-1995-N-0341 | Memorandum from Hermann Eye Center | Other | Memorandum | 2017-01-23T05:00:00Z | 2017 | 1 | 2017-01-23T05:00:00Z | 2017-01-23T16:47:58Z | 0 | 0 | 0900006480599dd9 | ||
| FDA-1995-N-0341-0001 | FDA | Reclassify Rigid Gas Permeable Contact Lens Solution - CLOSED FDA-1995-N-0341 | Medical Devices; Reclassification and Codification of Rigid Gas Permeable Contact Lens Solution; Soft (Hydrophilic) Contact Lens Solution; and Contact Lens Heat Disinfecting Unit | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2017-01-23T05:00:00Z | 2017 | 1 | 1996-04-01T05:00:00Z | 1996-06-18T03:59:59Z | 2025-06-02T23:01:47Z | 96-7784 | 0 | 0 | 0900006480599dd3 |
| FDA-1995-N-0341-0005 | FDA | Reclassify Rigid Gas Permeable Contact Lens Solution - CLOSED FDA-1995-N-0341 | Letter from Alexander J. Brucker to FDA CDRH | Other | Letter(s) | 2017-01-23T05:00:00Z | 2017 | 1 | 2017-01-23T05:00:00Z | 2017-01-23T16:42:58Z | 0 | 0 | 0900006480599dd8 | ||
| FDA-1995-N-0341-0010 | FDA | Reclassify Rigid Gas Permeable Contact Lens Solution - CLOSED FDA-1995-N-0341 | Ophthalmic Devices: Reclassification of Rigid Gas Permeable Contact Lens Solution; Soft (Hydrophilic) Contact Lens Solution; and Contact Lens Heat Disinfecting Unit | Rule | Final Rule | 2017-01-23T05:00:00Z | 2017 | 1 | 1997-06-06T04:00:00Z | 1997-07-08T03:59:59Z | 2025-06-02T23:24:43Z | 97-14751 | 0 | 0 | 0900006480599dde |
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;