documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FDA-2008-D-0150" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, open_for_comment, withdrawn, 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-2008-D-0150-0021 | FDA | None FDA-2008-D-0150 | Guidance for Industry Hypertension Indication: Drug Labeling for Cardiovascular Outcome Claims | Other | Guidance | 2022-12-15T05:00:00Z | 2022 | 12 | 2022-12-15T05:00:00Z | 2024-11-12T23:16:26Z | 1 | 0 | 090000648430862c | ||
| FDA-2008-D-0150-0020 | FDA | None FDA-2008-D-0150 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2017-05-30T04:00:00Z | 2017 | 5 | 2017-05-30T04:00:00Z | 2017-05-30T14:38:05Z | 2017-11011 | 0 | 0 | 09000064826680d2 | |
| FDA-2008-D-0150-0019 | FDA | None FDA-2008-D-0150 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approval; Guidance for Industry on Hypertension Indication: Drug Labeling for Cardiovascular Outcome Claims | Notice | Notice of Approval | 2013-12-19T05:00:00Z | 2013 | 12 | 2013-12-19T05:00:00Z | 2013-12-19T17:20:33Z | 2013-30146 | 0 | 0 | 09000064814cb007 | |
| FDA-2008-D-0150-0018 | FDA | None FDA-2008-D-0150 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Guidance for Industry on Hypertension Indication: Drug Labeling for Cardiovascular Outcome Claims | Notice | General Notice | 2013-08-22T04:00:00Z | 2013 | 8 | 2013-08-22T04:00:00Z | 2013-09-24T03:59:59Z | 2013-08-22T14:23:12Z | 2013-20471 | 0 | 0 | 09000064813bf008 |
| FDA-2008-D-0150-0017 | FDA | None FDA-2008-D-0150 | Agency Information Collection Activities; Proposed Collection; Comment Request; Guidance for Industry on Hypertension Indication: Drug Labeling for Cardiovascular Outcome Claims | Notice | General Notice | 2013-04-18T04:00:00Z | 2013 | 4 | 2013-04-18T04:00:00Z | 2013-06-18T03:59:59Z | 2014-01-14T13:21:01Z | 2013-09093 | 0 | 0 | 0900006481299b1d |
| FDA-2008-D-0150-0015 | FDA | None FDA-2008-D-0150 | Guidance for Industry; Availability: Hypertension Indication, Drug Labeling for Cardiovascular Outcome Claims | Notice | NAD-Notice of Availability of Data | 2011-03-15T04:00:00Z | 2011 | 3 | 2011-03-15T04:00:00Z | 2011-05-17T03:59:59Z | 2011-03-16T12:35:04Z | 2011-05945 | 0 | 0 | 0900006480c07f51 |
| FDA-2008-D-0150-0016 | FDA | None FDA-2008-D-0150 | Guidance for Industry; Hypertension Indication, Drug Labeling for Cardiovascular Outcome Claims | Other | GDL-Guidance (Supporting and Related Materials) | 2011-03-15T04:00:00Z | 2011 | 3 | 2011-03-15T04:00:00Z | 2011-03-16T12:39:53Z | 0 | 0 | 0900006480c081c0 | ||
| FDA-2008-D-0150-0001 | FDA | None FDA-2008-D-0150 | Draft Guidance for Industry on Hypertension Indication: Drug Labeling for Cardiovascular Outcome Claims; Availability | Notice | NAD-Notice of Availability of Data | 2008-03-13T04:00:00Z | 2008 | 3 | 2008-03-13T04:00:00Z | 2008-05-13T03:59:59Z | 2008-05-12T07:28:00Z | E8-05083 | 0 | 0 | 09000064803f402e |
| FDA-2008-D-0150-0002 | FDA | None FDA-2008-D-0150 | Draft Guidance for Industry on Hypertension Indication: Drug Labeling for Cardiovascular Outcome Claims - Guidance Document | Other | 2008-03-13T00:00:00Z | 2008 | 3 | 2020-01-29T20:57:08Z | 0 | 1 | 09000064803f416f |
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;