documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2014-D-1492" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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-2014-D-1492-0008 | FDA | None FDA-2014-D-1492 | Chemistry, Manufacturing, and Controls Technical Section Filing Strategies; Draft Guidance for Industry; Availability | Notice | Notice of Availability | 2024-09-17T04:00:00Z | 2024 | 9 | 2024-09-17T04:00:00Z | 2024-09-17T14:31:44Z | 2024-20924 | 0 | 0 | 090000648672f6f9 | |
| FDA-2014-D-1492-0009 | FDA | None FDA-2014-D-1492 | Chemistry, Manufacturing, and Controls (CMC) Technical Section Filing Strategies; Guidance for Industry - Draft Guidance - (GFI) #227 | Other | Guidance | 2024-09-17T04:00:00Z | 2024 | 9 | 2024-09-17T04:00:00Z | 2024-11-19T04:59:59Z | 2024-11-19T02:00:47Z | 1 | 0 | 090000648672efa8 | |
| FDA-2014-D-1492-0006 | FDA | None FDA-2014-D-1492 | Two-Phased Chemistry, Manufacturing, and Controls Technical Sections; Guidance for Industry; Availability | Notice | Notice of Availability | 2015-09-01T04:00:00Z | 2015 | 9 | 2015-09-01T04:00:00Z | 2015-09-01T15:23:53Z | 2015-21583 | 0 | 0 | 0900006481c4a3fb | |
| FDA-2014-D-1492-0007 | FDA | None FDA-2014-D-1492 | Guidance for Industry Two-Phased Chemistry, Manufacturing, and Controls (CMC) Technical Sections | Other | Guidance | 2015-09-01T04:00:00Z | 2015 | 9 | 2015-09-01T04:00:00Z | 2024-09-17T14:40:05Z | 0 | 0 | 0900006481c4be30 | ||
| FDA-2014-D-1492-0004 | FDA | None FDA-2014-D-1492 | Request for Extension from Animal Health Institute (AHI) | Other | Request for Extension | 2015-03-12T04:00:00Z | 2015 | 3 | 2015-03-12T04:00:00Z | 2015-03-12T10:53:17Z | 0 | 0 | 09000064819383e2 | ||
| FDA-2014-D-1492-0003 | FDA | None FDA-2014-D-1492 | Two-Phased Chemistry, Manufacturing, and Controls Technical Sections; Draft Guidance for Industry; Extension of Comment Period | Notice | Extension of Comment Period | 2014-12-09T05:00:00Z | 2014 | 12 | 2014-12-09T05:00:00Z | 2015-02-18T04:59:59Z | 2015-03-19T02:12:12Z | 2014-28713 | 0 | 0 | 0900006481967c1e |
| FDA-2014-D-1492-0002 | FDA | None FDA-2014-D-1492 | Draft Guidance for Industry on Two-Phased Chemistry, Manufacturing, and Controls (CMC) Technical Sections | Other | Guidance | 2014-10-20T04:00:00Z | 2014 | 10 | 2014-10-20T04:00:00Z | 2024-09-17T14:40:16Z | 0 | 0 | 09000064818de9c8 | ||
| FDA-2014-D-1492-0001 | FDA | None FDA-2014-D-1492 | Two-Phased Chemistry, Manufacturing, and Controls Technical Sections; Draft Guidance for Industry; Availability | Notice | Notice of Availability | 2014-10-20T04:00:00Z | 2014 | 10 | 2014-10-20T04:00:00Z | 2014-12-20T04:59:59Z | 2015-03-13T02:02:02Z | 2014-24796 | 0 | 0 | 09000064818dd7b4 |
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;