documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2011-D-0800" 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-2011-D-0800-0046 | FDA | None FDA-2011-D-0800 | Regulatory Classification ofPharmaceutical Co-CrystalsGuidance for Industry | Other | Guidance | 2020-05-13T04:00:00Z | 2020 | 5 | 2020-05-13T04:00:00Z | 2024-11-06T23:36:10Z | 1 | 0 | 09000064845edb33 | ||
| FDA-2011-D-0800-0045 | FDA | None FDA-2011-D-0800 | Regulatory Classification of Pharmaceutical Co-Crystals; Guidance for Industry; Availability | Notice | Notice of Availability | 2018-02-15T05:00:00Z | 2018 | 2 | 2018-02-15T05:00:00Z | 2018-02-15T17:11:17Z | 2018-03133 | 0 | 0 | 0900006482f346c1 | |
| FDA-2011-D-0800-0028 | FDA | None FDA-2011-D-0800 | Regulatory Classification of Pharmaceutical Co-Crystals; Draft Guidance for Industry; Availability | Notice | Notice of Availability | 2016-08-17T04:00:00Z | 2016 | 8 | 2016-08-17T04:00:00Z | 2016-10-18T03:59:59Z | 2016-10-18T01:00:43Z | 2016-19596 | 0 | 0 | 090000648217ce04 |
| FDA-2011-D-0800-0029 | FDA | None FDA-2011-D-0800 | Draft Guidance Regulatory Classification of Pharmaceutical Co-Crystals Guidance for Industry | Other | Guidance | 2016-08-17T04:00:00Z | 2016 | 8 | 2016-08-17T04:00:00Z | 2019-08-20T19:18:35Z | 0 | 0 | 090000648217d7dd | ||
| FDA-2011-D-0800-0026 | FDA | None FDA-2011-D-0800 | Guidance for Industry on Regulatory Classification of Pharmaceutical Co- Crystals; Availability | Notice | Notice of Availability | 2013-04-26T04:00:00Z | 2013 | 4 | 2013-04-26T04:00:00Z | 2016-08-01T12:21:23Z | 2013-09872 | 0 | 0 | 09000064812a9571 | |
| FDA-2011-D-0800-0027 | FDA | None FDA-2011-D-0800 | Guidance for Industry on Regulatory Classification of Pharmaceutical Co- Crystals | Other | Guidance | 2013-04-26T04:00:00Z | 2013 | 4 | 2013-04-26T04:00:00Z | 2019-08-20T18:44:08Z | 0 | 0 | 09000064812a87f4 | ||
| FDA-2011-D-0800-0001 | FDA | None FDA-2011-D-0800 | Draft Guidance for Industry; Availability: Regulatory Classification of Pharmaceutical Co-Crystals | Notice | Notice of Availability | 2011-12-02T05:00:00Z | 2011 | 12 | 2011-12-02T05:00:00Z | 2012-03-02T04:59:59Z | 2011-12-02T14:13:26Z | 2011-31022 | 0 | 0 | 0900006480f7a304 |
| FDA-2011-D-0800-0002 | FDA | None FDA-2011-D-0800 | Draft Guidance for Industry; Regulatory Classification of Pharmaceutical Co-Crystals | Other | Guidance | 2011-12-02T05:00:00Z | 2011 | 12 | 2011-12-02T05:00:00Z | 2019-08-20T18:43:48Z | 0 | 0 | 0900006480f79638 |
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;