documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FDA-2023-N-3275" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-2023-N-3275-0007 | FDA | None FDA-2023-N-3275 | Reference 4 - WHO, Critically Important Antimicrobials for Human Medicine. 2018 | Supporting & Related Material | Background Material | 2023-12-07T05:00:00Z | 2023 | 12 | 2023-12-07T23:24:54Z | 0 | 0 | 090000648630f956 | |||
| FDA-2023-N-3275-0006 | FDA | None FDA-2023-N-3275 | Reference 3 - General and Plastic Surgery Devices Panel, “2016 Meeting Materials of the General and Plastic Surgery Advisory Panel--September 20-21, 2016” | Supporting & Related Material | Background Material | 2023-12-07T05:00:00Z | 2023 | 12 | 2023-12-07T23:24:45Z | 0 | 0 | 090000648630f953 | |||
| FDA-2023-N-3275-0005 | FDA | None FDA-2023-N-3275 | Reference 2 - General and Plastic Surgery Devices Panel, “Brief Summary from the General and Plastic Surgery Devices Panel Meeting--August 25-26, 2005” | Supporting & Related Material | Background Material | 2023-12-07T05:00:00Z | 2023 | 12 | 2023-12-07T23:23:54Z | 0 | 0 | 090000648630f909 | |||
| FDA-2023-N-3275-0003 | FDA | None FDA-2023-N-3275 | List of References | Supporting & Related Material | Background Material | 2023-12-07T05:00:00Z | 2023 | 12 | 2023-12-07T23:22:12Z | 0 | 0 | 090000648630f906 | |||
| FDA-2023-N-3275-0004 | FDA | None FDA-2023-N-3275 | Reference 1 - General and Plastic Surgery Devices Panel, “Transcript of the FDA General and Plastic Surgery Devices Panel meeting--November 17, 1998” | Supporting & Related Material | Background Material | 2023-12-07T05:00:00Z | 2023 | 12 | 2023-12-07T23:23:10Z | 0 | 0 | 090000648630f908 | |||
| FDA-2023-N-3275-0001 | FDA | None FDA-2023-N-3275 | Effective Date of Requirement for Premarket Approval Applications for Certain Solid Wound Dressings; Wound Dressings Formulated as a Gel, Cream, or Ointment; and Liquid Wound Washes Containing Medically Important Antimicrobials | Proposed Rule | Amendment | 2023-11-30T05:00:00Z | 2023 | 11 | 2023-11-30T05:00:00Z | 2024-02-29T04:59:59Z | 2024-02-29T02:00:22Z | 2023-26208 | 0 | 0 | 09000064862c3354 |
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;