documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where agency_id = "FDA" and docket_id = "FDA-2012-N-0280" 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-2012-N-0280-0014 | FDA | None FDA-2012-N-0280 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2022-07-06T04:00:00Z | 2022 | 7 | 2022-07-06T04:00:00Z | 2022-07-06T15:04:30Z | 2022-14358 | 0 | 0 | 09000064851b2f1e | |
| FDA-2012-N-0280-0012 | FDA | None FDA-2012-N-0280 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Financial Disclosure by Clinical Investigators | Notice | 30 Day Proposed Information Collection | 2022-03-30T04:00:00Z | 2022 | 3 | 2022-03-30T04:00:00Z | 2022-04-30T03:59:59Z | 2022-04-01T01:00:27Z | 2022-06661 | 0 | 0 | 0900006484fedf89 |
| FDA-2012-N-0280-0010 | FDA | None FDA-2012-N-0280 | Agency Information Collection Activities; Proposed Collection; Comment Request; Financial Disclosure by Clinical Investigators | Notice | 60 Day Proposed Information Collection | 2021-12-02T05:00:00Z | 2021 | 12 | 2021-12-02T05:00:00Z | 2022-02-01T04:59:59Z | 2021-12-03T02:00:32Z | 2021-26182 | 0 | 0 | 0900006484e936d4 |
| FDA-2012-N-0280-0009 | FDA | None FDA-2012-N-0280 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2019-06-11T04:00:00Z | 2019 | 6 | 2019-06-11T04:00:00Z | 2019-06-12T13:26:01Z | 2019-12278 | 0 | 0 | 0900006483d036ea | |
| FDA-2012-N-0280-0008 | FDA | None FDA-2012-N-0280 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Financial Disclosure by Clinical Investigators | Notice | 30 Day Proposed Information Collection | 2019-03-04T05:00:00Z | 2019 | 3 | 2019-03-04T05:00:00Z | 2019-04-04T03:59:59Z | 2019-03-04T14:29:41Z | 2019-03828 | 0 | 0 | 0900006483aba8df |
| FDA-2012-N-0280-0007 | FDA | None FDA-2012-N-0280 | Agency Information Collection Activities; Proposed Collection; Comment Request; Financial Disclosure by Clinical Investigators | Notice | 60 Day Proposed Information Collection | 2018-09-27T04:00:00Z | 2018 | 9 | 2018-09-27T04:00:00Z | 2018-11-27T04:59:59Z | 2018-09-27T14:21:51Z | 2018-21039 | 0 | 0 | 090000648377a024 |
| FDA-2012-N-0280-0006 | FDA | None FDA-2012-N-0280 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2016-04-12T04:00:00Z | 2016 | 4 | 2016-04-12T04:00:00Z | 2016-04-12T17:58:28Z | 2016-08153 | 0 | 0 | 0900006481f5d525 | |
| FDA-2012-N-0280-0005 | FDA | None FDA-2012-N-0280 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Financial Disclosure by Clinical Investigators | Notice | 30 Day Proposed Information Collection | 2015-10-29T04:00:00Z | 2015 | 10 | 2015-10-29T04:00:00Z | 2015-12-01T04:59:59Z | 2015-10-29T13:59:21Z | 2015-27559 | 0 | 0 | 0900006481cf8bf0 |
| FDA-2012-N-0280-0004 | FDA | None FDA-2012-N-0280 | Agency Information Collection Activities; Proposed Collection; Comment Request; Financial Disclosure by Clinical Investigators | Notice | 60 Day Proposed Information Collection | 2015-04-29T04:00:00Z | 2015 | 4 | 2015-04-29T04:00:00Z | 2015-06-30T03:59:59Z | 2015-04-29T14:45:29Z | 2015-09908 | 0 | 0 | 0900006481ac251d |
| FDA-2012-N-0280-0003 | FDA | None FDA-2012-N-0280 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Financial Disclosure by Clinical Investigators | Notice | General Notice | 2012-07-26T04:00:00Z | 2012 | 7 | 2012-07-26T13:30:41Z | 2012-18235 | 0 | 0 | 09000064810b1b01 | ||
| FDA-2012-N-0280-0001 | FDA | None FDA-2012-N-0280 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Financial Disclosure by Clinical Investigators | Notice | General Notice | 2012-03-28T04:00:00Z | 2012 | 3 | 2012-03-28T04:00:00Z | 2012-05-30T03:59:59Z | 2012-05-07T12:01:45Z | 2012-07405 | 0 | 0 | 0900006480fe2f59 |
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;