documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FDA-2021-D-1031" 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-2021-D-1031-0041 | FDA | None FDA-2021-D-1031 | Reporting Amount of Listed Drugs and Biological Products Under Section 510(j)(3) of the FD&C Act; Guidance for Industry | Other | Guidance | 2024-02-06T05:00:00Z | 2024 | 2 | 2024-02-06T05:00:00Z | 2024-11-12T22:23:26Z | 1 | 0 | 09000064863e85df | ||
| FDA-2021-D-1031-0040 | FDA | None FDA-2021-D-1031 | Reporting Amount of Listed Drugs and Biological Products Under Section 510(j)(3) of the Federal Food, Drug, and Cosmetic Act; Guidance for Industry; Availability | Notice | Notice of Availability | 2024-02-06T05:00:00Z | 2024 | 2 | 2024-02-06T05:00:00Z | 2024-02-06T15:18:43Z | 2024-02369 | 0 | 0 | 09000064863e7d5d | |
| FDA-2021-D-1031-0038 | FDA | None FDA-2021-D-1031 | SBIA Webinar Notes | Other | Minutes | 2022-12-13T05:00:00Z | 2022 | 12 | 2022-12-13T05:00:00Z | 2022-12-13T17:20:29Z | 0 | 0 | 0900006485534110 | ||
| FDA-2021-D-1031-0034 | FDA | None FDA-2021-D-1031 | AHI Meeting Notes | Other | Minutes | 2022-09-22T04:00:00Z | 2022 | 9 | 2022-09-22T04:00:00Z | 2022-09-22T17:25:43Z | 0 | 0 | 0900006485351d1d | ||
| FDA-2021-D-1031-0032 | FDA | None FDA-2021-D-1031 | Meeting on Reporting Amount of Listed Drugs and Biological Products Under Section 510(j)(3) of the FD&C Act | Other | Minutes | 2022-08-19T04:00:00Z | 2022 | 8 | 2022-08-19T04:00:00Z | 2022-08-19T19:10:28Z | 0 | 0 | 0900006485257d29 | ||
| FDA-2021-D-1031-0029 | FDA | None FDA-2021-D-1031 | Meeting on Reporting Amount of Listed Drugs and Biological Products Under Section 510(j)(3) of the FD&C Act April 20, 2022 | Other | Minutes | 2022-05-25T04:00:00Z | 2022 | 5 | 2022-05-25T04:00:00Z | 2022-05-25T17:32:13Z | 0 | 0 | 09000064850f0e8c | ||
| FDA-2021-D-1031-0025 | FDA | None FDA-2021-D-1031 | Reporting Amount of Listed Drugs and Biological Products Under Section 510(j)(3) of the FD&C Act Guidance for Industry | Other | Guidance | 2022-04-28T04:00:00Z | 2022 | 4 | 2022-04-28T04:00:00Z | 2024-02-06T15:32:35Z | 0 | 0 | 090000648503ffab | ||
| FDA-2021-D-1031-0007 | FDA | None FDA-2021-D-1031 | Request for Extension from International Society for Pharmaceutical Engineering (ISPE) | Other | Request for Extension | 2021-12-23T05:00:00Z | 2021 | 12 | 2021-12-23T05:00:00Z | 2021-12-23T18:01:27Z | 0 | 0 | 0900006484ed0634 | ||
| FDA-2021-D-1031-0001 | FDA | None FDA-2021-D-1031 | Reporting Amount of Listed Drugs and Biological Products Under Section 510(j)(3) of the Federal Food, Drug, and Cosmetic Act; Draft Guidance for Industry; Availability | Notice | Notice of Availability | 2021-11-01T04:00:00Z | 2021 | 11 | 2021-11-01T04:00:00Z | 2022-01-04T04:59:59Z | 2022-05-01T05:16:56Z | 2021-23722 | 0 | 0 | 0900006484e04f8a |
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;