documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FDA-2020-D-2307" 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-2020-D-2307-0067 | FDA | None FDA-2020-D-2307 | Real-World Data: Assessing Electronic Health Records and Medical Claims Data To Support Regulatory Decision-Making for Drug and Biological Products; Guidance for Industry | Other | Guidance | 2024-07-25T04:00:00Z | 2024 | 7 | 2024-07-25T04:00:00Z | 2024-11-12T22:38:45Z | 1 | 0 | 0900006486605499 | ||
| FDA-2020-D-2307-0066 | FDA | None FDA-2020-D-2307 | Real-World Data: Assessing Electronic Health Records and Medical Claims Data To Support Regulatory Decision-Making for Drug and Biological Products; Guidance for Industry; Availability | Notice | Notice of Availability | 2024-07-25T04:00:00Z | 2024 | 7 | 2024-07-25T04:00:00Z | 2024-07-25T12:54:15Z | 2024-16338 | 0 | 0 | 09000064866051dd | |
| FDA-2020-D-2307-0065 | FDA | None FDA-2020-D-2307 | Meeting Material from FDA/CDER | Other | Background Material | 2023-04-19T04:00:00Z | 2023 | 4 | 2023-04-19T04:00:00Z | 2023-04-19T16:43:02Z | 0 | 0 | 090000648595efa7 | ||
| FDA-2020-D-2307-0052 | FDA | None FDA-2020-D-2307 | Real-World Data: Assessing Electronic Health Records and Medical Claims Data To Support Regulatory Decision- Making for Drug and Biological Products; Draft Guidance for Industry; Reopening of the Comment Period | Notice | Notice of Availability | 2021-12-10T05:00:00Z | 2021 | 12 | 2021-12-10T05:00:00Z | 2022-01-25T04:59:59Z | 2024-07-25T12:53:56Z | 2021-26699 | 0 | 0 | 0900006484eb7ef1 |
| FDA-2020-D-2307-0029 | FDA | None FDA-2020-D-2307 | Request for Extension from Microbiome Therapeutics Innovation Group | Other | Request for Extension | 2021-11-29T05:00:00Z | 2021 | 11 | 2021-11-29T05:00:00Z | 2021-11-29T17:17:57Z | 0 | 0 | 0900006484e853c2 | ||
| FDA-2020-D-2307-0011 | FDA | None FDA-2020-D-2307 | Request for Extension from Alliance for Regenerative Medicine | Other | Request for Extension | 2021-11-10T05:00:00Z | 2021 | 11 | 2021-11-10T05:00:00Z | 2021-11-10T16:11:52Z | 0 | 0 | 0900006484e38a8b | ||
| FDA-2020-D-2307-0007 | FDA | None FDA-2020-D-2307 | Request for Extension from Pharmaceutical Research and Manufacturers of America (PhRMA) | Other | Request for Extension | 2021-11-05T04:00:00Z | 2021 | 11 | 2021-11-05T04:00:00Z | 2021-11-05T19:57:50Z | 0 | 0 | 0900006484e25b5e | ||
| FDA-2020-D-2307-0001 | FDA | None FDA-2020-D-2307 | Real-World Data: Assessing Electronic Health Records and Medical Claims Data To Support Regulatory Decision- Making for Drug and Biological Products; Draft Guidance for Industry; Availability | Notice | Notice of Availability | 2021-09-30T04:00:00Z | 2021 | 9 | 2021-09-30T04:00:00Z | 2024-11-06T23:51:11Z | 2021-21315 | 1 | 0 | 0900006484db3bf5 | |
| FDA-2020-D-2307-0002 | FDA | None FDA-2020-D-2307 | Real-World Data: Assessing Electronic Health Records and Medical Claims Data To Support Regulatory Decision-Making for Drug and Biological Products Guidance for Industry DRAFT GUIDANCE | Other | Guidance | 2021-09-30T04:00:00Z | 2021 | 9 | 2021-09-30T04:00:00Z | 2022-01-25T04:59:59Z | 2024-11-06T23:51:33Z | 1 | 0 | 0900006484db43c8 |
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;