documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FDA-2015-N-3815" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2015-N-3815-0010 | FDA | None FDA-2015-N-3815 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2022-08-22T04:00:00Z | 2022 | 8 | 2022-08-22T04:00:00Z | 2022-08-23T12:01:58Z | 2022-18062 | 0 | 0 | 0900006485261395 | |
| FDA-2015-N-3815-0009 | FDA | None FDA-2015-N-3815 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Establishment Registration and Device Listing for Manufacturers and Importers of Devices | Notice | 30 Day Proposed Information Collection | 2022-06-24T04:00:00Z | 2022 | 6 | 2022-06-24T04:00:00Z | 2022-08-22T18:56:31Z | 2022-13522 | 0 | 0 | 090000648518c1fe | |
| FDA-2015-N-3815-0008 | FDA | None FDA-2015-N-3815 | Agency Information Collection Activities; Proposed Collection; Comment Request; Establishment Registration and Device Listing for Manufacturers and Importers of Devices | Notice | 60 Day Proposed Information Collection | 2022-02-08T05:00:00Z | 2022 | 2 | 2022-02-08T05:00:00Z | 2022-04-12T03:59:59Z | 2022-08-22T18:56:18Z | 2022-02600 | 0 | 0 | 0900006484f5de2d |
| FDA-2015-N-3815-0007 | FDA | None FDA-2015-N-3815 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2019-07-23T04:00:00Z | 2019 | 7 | 2019-07-23T04:00:00Z | 2019-07-23T16:47:28Z | 2019-15626 | 0 | 0 | 0900006483dabdce | |
| FDA-2015-N-3815-0005 | FDA | None FDA-2015-N-3815 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Electronic Submission of Medical Device Registration and Listing | Notice | 30 Day Proposed Information Collection | 2019-05-08T04:00:00Z | 2019 | 5 | 2019-05-08T04:00:00Z | 2019-06-08T03:59:59Z | 2019-07-23T11:57:10Z | 2019-09412 | 0 | 0 | 0900006483c43ab5 |
| FDA-2015-N-3815-0004 | FDA | None FDA-2015-N-3815 | Agency Information Collection Activities; Proposed Collection; Comment Request; Electronic Submission of Medical Device Registration and Listing | Notice | 60 Day Proposed Information Collection | 2018-12-04T05:00:00Z | 2018 | 12 | 2018-12-04T05:00:00Z | 2019-02-05T04:59:59Z | 2019-07-23T11:55:32Z | 2018-26303 | 0 | 0 | 090000648393907f |
| FDA-2015-N-3815-0003 | FDA | None FDA-2015-N-3815 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2016-07-11T04:00:00Z | 2016 | 7 | 2016-07-11T04:00:00Z | 2016-07-11T13:31:23Z | 2016-16349 | 0 | 0 | 090000648209c0b0 | |
| FDA-2015-N-3815-0002 | FDA | None FDA-2015-N-3815 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Electronic Submission of Medical Device Registration and Listing | Notice | 30 Day Proposed Information Collection | 2016-03-15T04:00:00Z | 2016 | 3 | 2016-03-15T04:00:00Z | 2016-04-15T03:59:59Z | 2016-03-15T12:59:22Z | 2016-05744 | 0 | 0 | 0900006481ec39a3 |
| FDA-2015-N-3815-0001 | FDA | None FDA-2015-N-3815 | Agency Information Collection Activities; Proposed Collection; Comment Request; Electronic Submission of Medical Device Registration and Listing | Notice | 60 Day Proposed Information Collection | 2015-10-27T04:00:00Z | 2015 | 10 | 2015-10-27T04:00:00Z | 2015-12-29T04:59:59Z | 2015-10-27T13:19:38Z | 2015-27199 | 0 | 0 | 0900006481cf17fd |
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;