documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "FDA", document_type = "Proposed Rule" and posted_year = 1999 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, subtype, posted_date, posted_month, comment_start_date, comment_end_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-1996-N-0006-0002 | FDA | Eligibility Criteria for Considering Additional Conditions in the Over-the-Counter Drug Monograph System FDA-1996-N-0006 | Notice of Proposed Rule re Additional Criteria and Procedures for Classifying Over-the-Counter Drugs as Generally Recognized as Safe and Effective and Not Misbranded | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 1999-12-20T05:00:00Z | 1999 | 12 | 1999-12-20T05:00:00Z | 2000-03-23T04:59:59Z | 2015-05-05T15:10:01Z | 0 | 0 | 09000064804f9934 | |
| FDA-1994-P-0041-0002 | FDA | Require Labeling of Trans Fatty Acid & Prohibit Deceptive Claims-CLOSED FDA-1994-P-0041 | Food Labeling: Trans Fatty Acids in Nutrition Labeling, Nutrient Content Claims, and Health Claims; Pages 1-100 | Proposed Rule | NPR-Notice of Proposed Rule-Making | 1999-11-17T05:00:00Z | 1999 | 11 | 1999-11-17T05:00:00Z | 2000-02-16T04:59:59Z | 2010-02-12T19:30:22Z | 0 | 0 | 09000064804fe332 | |
| FDA-1994-P-0041-0001 | FDA | Require Labeling of Trans Fatty Acid & Prohibit Deceptive Claims-CLOSED FDA-1994-P-0041 | Food Labeling: Trans Fatty Acids in Nutrition Labeling, Nutrient Content Claims, and Health Claims; Pages 101-148 | Proposed Rule | NPR-Notice of Proposed Rule-Making | 1999-11-17T05:00:00Z | 1999 | 11 | 1999-11-17T05:00:00Z | 2000-02-16T04:59:59Z | 2010-02-12T19:28:39Z | 0 | 0 | 09000064804fda73 | |
| FDA-1985-N-0022-0010 | FDA | Drug Price Competition & Patent Term Restoration ACT 1984 FDA-1985-N-0022 | Notice of Proposed Rulemaking re Drug Price Competition & Patent Term Restoration ACT 1984 | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 1999-08-09T04:00:00Z | 1999 | 8 | 1999-08-09T04:00:00Z | 1999-11-05T04:59:59Z | 2016-02-26T19:20:20Z | 0 | 0 | 09000064805b3c13 | |
| FDA-1999-N-0007-0001 | FDA | Proposed Classification of Female Condoms FDA-1999-N-0007 | Obstetrical and Gynecological Devices; Proposed Classification of Female Condoms | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 1999-06-16T04:00:00Z | 1999 | 6 | 1999-06-10T04:00:00Z | 1999-09-09T03:59:59Z | 2024-10-10T19:38:34Z | 99-14653 | 0 | 0 | 09000064804a59a9 |
| FDA-1998-P-0086-0003 | FDA | Permit the label statement of "Supplement Facts" FDA-1998-P-0086 | Notice of Proposed Rule-Making re Nutrition Labeling of Dietary Supplements on a “Per Day” Basis | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 1999-01-19T05:00:00Z | 1999 | 1 | 1999-01-19T05:00:00Z | 1999-01-13T04:59:59Z | 2015-12-07T14:12:56Z | 0 | 0 | 0900006480585141 | |
| FDA-1998-N-0104-0001 | FDA | Bulk Drug Substances To Be Used in Pharmacy Compounding FDA-1998-N-0104 | List of Bulk Drug Substances That May Be Used in Pharmacy Compounding | Proposed Rule | NPR-Notice of Proposed Rule-Making | 1999-01-19T05:00:00Z | 1999 | 1 | 1999-01-19T05:00:00Z | 1999-03-24T04:59:59Z | 2010-03-17T17:35:01Z | 0 | 0 | 09000064805876cd | |
| FDA-1998-N-0043-0001 | FDA | External Penile Rigidity Devices;Proposed Classification - Closed FDA-1998-N-0043 | External Penile Rigidity Devices; Proposed Classification for the External Penile Rigidity Device | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 1999-01-05T05:00:00Z | 1999 | 1 | 1999-01-04T05:00:00Z | 1999-04-06T03:59:59Z | 2024-09-16T20:20:05Z | 98–34733 | 0 | 0 | 090000648056e625 |
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;