documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "FDA" and docket_id = "FDA-2005-N-0101" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-2005-N-0101-0007 | FDA | Notice to Industry on the Development of a Web-Based System for Obtaining a User Fee Payment Identification Number and Prescription Drug User Fee Cover Sheet (FDA Form 3397) FDA-2005-N-0101 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Announcement | 2022-05-10T04:00:00Z | 2022 | 5 | 2022-05-10T04:00:00Z | 2022-05-12T15:59:34Z | 2022-10017 | 0 | 0 | 09000064850593f6 | |
| FDA-2005-N-0101-0006 | FDA | Notice to Industry on the Development of a Web-Based System for Obtaining a User Fee Payment Identification Number and Prescription Drug User Fee Cover Sheet (FDA Form 3397) FDA-2005-N-0101 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Prescription Drug User Fee Program | Notice | 30 Day Proposed Information Collection | 2022-02-08T05:00:00Z | 2022 | 2 | 2022-02-08T05:00:00Z | 2022-03-11T04:59:59Z | 2022-02-08T14:01:59Z | 2022-02617 | 0 | 0 | 0900006484f5e061 |
| FDA-2005-N-0101-0005 | FDA | Notice to Industry on the Development of a Web-Based System for Obtaining a User Fee Payment Identification Number and Prescription Drug User Fee Cover Sheet (FDA Form 3397) FDA-2005-N-0101 | Agency Information Collection Activities; Proposed Collections; Comment Request; Prescription Drug User Fee Program | Notice | 60 Day Proposed Information Collection | 2021-11-30T05:00:00Z | 2021 | 11 | 2021-11-30T05:00:00Z | 2022-02-01T04:59:59Z | 2021-12-01T16:11:24Z | 2021-26079 | 0 | 0 | 0900006484e8bbb4 |
| FDA-2005-N-0101-0004 | FDA | Notice to Industry on the Development of a Web-Based System for Obtaining a User Fee Payment Identification Number and Prescription Drug User Fee Cover Sheet (FDA Form 3397) FDA-2005-N-0101 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2019-04-29T04:00:00Z | 2019 | 4 | 2019-04-29T04:00:00Z | 2019-04-29T15:46:04Z | 2019-08607 | 0 | 0 | 0900006483c131a9 | |
| FDA-2005-N-0101-0003 | FDA | Notice to Industry on the Development of a Web-Based System for Obtaining a User Fee Payment Identification Number and Prescription Drug User Fee Cover Sheet (FDA Form 3397) FDA-2005-N-0101 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Prescription Drug User Fee Cover Sheet; Form FDA 3397 | Notice | 30 Day Proposed Information Collection | 2019-02-06T05:00:00Z | 2019 | 2 | 2019-02-06T05:00:00Z | 2019-03-09T04:59:59Z | 2019-02-06T14:42:48Z | 2019-01249 | 0 | 0 | 0900006483a49c2f |
| FDA-2005-N-0101-0002 | FDA | Notice to Industry on the Development of a Web-Based System for Obtaining a User Fee Payment Identification Number and Prescription Drug User Fee Cover Sheet (FDA Form 3397) FDA-2005-N-0101 | Agency Information Collection Activities; Proposed Collection; Comment Request; Prescription Drug User Fee Cover Sheet; Form FDA 3397 | Notice | 60 Day Proposed Information Collection | 2018-08-24T04:00:00Z | 2018 | 8 | 2018-08-24T04:00:00Z | 2018-10-24T03:59:59Z | 2018-11-30T16:52:03Z | 2018-18307 | 0 | 0 | 090000648364f8be |
| FDA-2005-N-0101-0001 | FDA | Notice to Industry on the Development of a Web-Based System for Obtaining a User Fee Payment Identification Number and Prescription Drug User Fee Cover Sheet (FDA Form 3397) FDA-2005-N-0101 | FDA | Notice | NAD-Notice of Availability of Data | 2005-03-14T05:00:00Z | 2005 | 3 | 2005-03-09T05:00:00Z | 2005-04-09T03:59:59Z | 2008-04-11T23:50:06Z | 0 | 0 | 090000648043f8a4 |
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;