documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FDA_FRDOC_0001" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, 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_FRDOC_0001-12138 | FDA | Recently Posted FDA Rules and Notices. FDA_FRDOC_0001 | Agency InformationCollection Activities; Proposals, Submissions, and Approvals: Food Labeling Requirements | Notice | 2023-04-12T04:00:00Z | 2023 | 4 | 2023-04-12T04:00:00Z | 2023-06-13T03:59:59Z | 2023-04-12T12:12:35Z | 2023-07683 | 0 | 0 | 09000064859343c2 | |
| FDA_FRDOC_0001-12140 | FDA | Recently Posted FDA Rules and Notices. FDA_FRDOC_0001 | Final Debarment Order: Olga L. Torres | Notice | 2023-04-12T04:00:00Z | 2023 | 4 | 2023-04-12T04:00:00Z | 2023-04-12T12:13:58Z | 2023-07670 | 0 | 0 | 0900006485934577 | ||
| FDA_FRDOC_0001-12139 | FDA | Recently Posted FDA Rules and Notices. FDA_FRDOC_0001 | Guidance for Industry: A Risk-Based Approach to Monitoring of Clinical Investigations—Questions and Answers | Notice | 2023-04-12T04:00:00Z | 2023 | 4 | 2023-04-12T04:00:00Z | 2023-04-12T12:13:25Z | 2023-07687 | 0 | 0 | 09000064859344b8 | ||
| FDA_FRDOC_0001-12120 | FDA | Recently Posted FDA Rules and Notices. FDA_FRDOC_0001 | Guidance: Patient-Focused Drug Development: Incorporating Clinical Outcome Assessments Into Endpoints for Regulatory Decision-Making | Notice | 2023-04-06T04:00:00Z | 2023 | 4 | 2023-04-06T04:00:00Z | 2023-07-06T03:59:59Z | 2023-04-06T13:34:46Z | 2023-07243 | 0 | 0 | 09000064858f20e2 | |
| FDA_FRDOC_0001-12122 | FDA | Recently Posted FDA Rules and Notices. FDA_FRDOC_0001 | Guidance: Permanent Discontinuance or Interruption in Manufacturing under the Federal Food, Drug, and Cosmetic Act | Notice | 2023-04-06T04:00:00Z | 2023 | 4 | 2023-04-06T04:00:00Z | 2023-06-06T03:59:59Z | 2023-04-06T13:36:02Z | 2023-07238 | 0 | 0 | 09000064858f226f | |
| FDA_FRDOC_0001-12123 | FDA | Recently Posted FDA Rules and Notices. FDA_FRDOC_0001 | Guidance: Considerations for Long-Term Clinical Neurodevelopmental Safety Studies in Neonatal Product Development | Notice | 2023-04-06T04:00:00Z | 2023 | 4 | 2023-04-06T04:00:00Z | 2023-05-16T03:59:59Z | 2023-04-08T01:01:34Z | 2023-07185 | 0 | 0 | 09000064858f22cb | |
| FDA_FRDOC_0001-12121 | FDA | Recently Posted FDA Rules and Notices. FDA_FRDOC_0001 | Guidance: Action Levels for Lead in Food Intended for Babies and Young Children | Notice | 2023-04-06T04:00:00Z | 2023 | 4 | 2023-04-06T04:00:00Z | 2023-05-09T03:59:59Z | 2023-04-06T13:35:24Z | 2023-07187 | 0 | 0 | 09000064858f2164 |
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;