documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2017-D-0085" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, open_for_comment, 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-2017-D-0085-0044 | FDA | None FDA-2017-D-0085 | Best Practices for Convening a GRAS Panel; Guidance for Industry; Availability | Notice | Notice of Availability | 2022-12-22T05:00:00Z | 2022 | 12 | 2022-12-22T05:00:00Z | 2022-12-22T14:39:30Z | 2022-27714 | 0 | 0 | 090000648554882e | |
| FDA-2017-D-0085-0045 | FDA | None FDA-2017-D-0085 | Best Practices for Convening a GRAS Panel: Guidance for Industry - Final Guidance | Other | Guidance | 2022-12-21T05:00:00Z | 2022 | 12 | 2022-12-21T05:00:00Z | 2024-11-12T23:49:43Z | 1 | 0 | 0900006485549dab | ||
| FDA-2017-D-0085-0048 | FDA | None FDA-2017-D-0085 | Reference-30-GRAS Notices Search Results Common Use In Food - Re: Best Practices for Convening a GRAS Panel: Guidance for Industry - Final Guidance | Supporting & Related Material | Background Material | 2022-12-21T05:00:00Z | 2022 | 12 | 2022-12-21T21:13:51Z | 0 | 0 | 0900006485549f5d | |||
| FDA-2017-D-0085-0046 | FDA | None FDA-2017-D-0085 | Final Guidance - Reference List - Re: Best Practices for Convening a GRAS Panel: Guidance for Industry - Final Guidance | Supporting & Related Material | Background Material | 2022-12-21T05:00:00Z | 2022 | 12 | 2022-12-21T21:13:02Z | 0 | 0 | 09000064855494a0 | |||
| FDA-2017-D-0085-0047 | FDA | None FDA-2017-D-0085 | Reference-29-Memorandum-November 4, 2010-Linda Kahl - Substances that Are Generally Recognized as Safe (GRAS); Experience with GRAS Notices - Re: Best Practices for Convening a GRAS Panel: Guidance for Industry - Final Guidance | Supporting & Related Material | Background Material | 2022-12-21T05:00:00Z | 2022 | 12 | 2022-12-21T21:13:35Z | 0 | 0 | 09000064855494a1 | |||
| FDA-2017-D-0085-0049 | FDA | None FDA-2017-D-0085 | Reference-31-OECD 2017-Guidance on Grouping of Chemicals- Re: Best Practices for Convening a GRAS Panel: Guidance for Industry - Final Guidance | Supporting & Related Material | Background Material | 2022-12-21T05:00:00Z | 2022 | 12 | 2022-12-21T21:14:18Z | 0 | 0 | 0900006485549f5e | |||
| FDA-2017-D-0085-0050 | FDA | None FDA-2017-D-0085 | Reference-32-Ball 2016-Toward Good Read-Across Practice (GRAP) Guidance- Re: Best Practices for Convening a GRAS Panel: Guidance for Industry - Final Guidance | Supporting & Related Material | Background Material | 2022-12-21T05:00:00Z | 2022 | 12 | 2022-12-21T21:14:43Z | 0 | 0 | 0900006485549f5f | |||
| FDA-2017-D-0085-0042 | FDA | None FDA-2017-D-0085 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Substances Generally Recognized as Safe: Best Practices for Convening a Generally Recognized as Safe Panel | Notice | 30 Day Proposed Information Collection | 2022-10-27T04:00:00Z | 2022 | 10 | 2022-10-27T04:00:00Z | 2022-11-29T04:59:59Z | 2022-12-21T16:18:56Z | 2022-23378 | 0 | 0 | 0900006485462764 |
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;