documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FDA-2011-N-0279" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_end_date, fr_doc_num, 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-2011-N-0279-0011 | FDA | None FDA-2011-N-0279 | Agency Information Collection Activities; Proposed Collection; Comment Request; Prescription Drug Marketing; Administrative Procedures, Policies, and Requirements | Notice | Request for Comments | 2021-03-12T05:00:00Z | 2021 | 3 | 2021-03-12T05:00:00Z | 2021-05-12T03:59:59Z | 2023-07-06T16:05:10Z | 2021-05214 | 0 | 0 | 0900006484a68d5f |
| FDA-2011-N-0279-0012 | FDA | None FDA-2011-N-0279 | Agency Information Collection Activities; Proposed Collection; Comment Request; Prescription Drug Marketing; Administrative Procedures, Policies, and Requirements | Notice | 60 Day Proposed Information Collection | 2021-03-12T05:00:00Z | 2021 | 3 | 2021-03-19T04:00:00Z | 2021-05-12T03:59:59Z | 2021-03-22T18:43:21Z | 2021-05214 | 0 | 0 | 0900006484a71c11 |
| FDA-2011-N-0279-0010 | FDA | None FDA-2011-N-0279 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2018-07-30T04:00:00Z | 2018 | 7 | 2018-07-30T04:00:00Z | 2018-07-30T15:33:13Z | 2018-16156 | 0 | 0 | 0900006483585aca | |
| FDA-2011-N-0279-0008 | FDA | None FDA-2011-N-0279 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Prescription Drug Marketing; Administrative Procedures, Policies, and Requirements | Notice | 30 Day Proposed Information Collection | 2018-05-24T04:00:00Z | 2018 | 5 | 2018-05-24T04:00:00Z | 2018-06-26T03:59:59Z | 2018-06-01T01:03:43Z | 2018-11113 | 0 | 0 | 09000064832d8b64 |
| FDA-2011-N-0279-0007 | FDA | None FDA-2011-N-0279 | Agency Information Collection Activities; Proposed Collection; Comment Request; Prescription Drug Marketing Act of 1987; Administrative Procedures, Policies, and Requirements | Notice | 60 Day Proposed Information Collection | 2017-12-14T05:00:00Z | 2017 | 12 | 2017-12-14T05:00:00Z | 2018-02-13T04:59:59Z | 2017-12-14T17:20:49Z | 2017-26933 | 0 | 0 | 0900006482d084dd |
| FDA-2011-N-0279-0006 | FDA | None FDA-2011-N-0279 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approval; Prescription Drug Marketing Act of 1987; Policies, Requirements, and Administrative Procedures | Notice | Notice of Approval | 2015-06-02T04:00:00Z | 2015 | 6 | 2015-06-02T04:00:00Z | 2015-06-02T15:57:32Z | 2015-13331 | 0 | 0 | 0900006481b152da | |
| FDA-2011-N-0279-0005 | FDA | None FDA-2011-N-0279 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Prescription Drug Marketing Act of 1987; Administrative Procedures, Policies, and Requirements | Notice | 30 Day Proposed Information Collection | 2015-02-27T05:00:00Z | 2015 | 2 | 2015-02-27T05:00:00Z | 2015-03-31T03:59:59Z | 2015-02-27T14:58:11Z | 2015-04131 | 0 | 0 | 0900006481a1d6d9 |
| FDA-2011-N-0279-0004 | FDA | None FDA-2011-N-0279 | Agency Information Collection Activities; Proposed Collection; Comment Request; Prescription Drug Marketing Act of 1987; Administrative Procedures, Policies, and Requirements | Notice | 60 Day Proposed Information Collection | 2014-11-14T05:00:00Z | 2014 | 11 | 2014-11-14T05:00:00Z | 2015-01-14T04:59:59Z | 2014-11-17T15:55:51Z | 2014-26917 | 0 | 0 | 090000648192e78c |
| FDA-2011-N-0279-0003 | FDA | None FDA-2011-N-0279 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Prescription Drug Marketing Act of 1987; Administrative Procedures, Policies, and Requirements | Notice | General Notice | 2011-09-29T04:00:00Z | 2011 | 9 | 2011-09-29T04:00:00Z | 2011-11-01T03:59:59Z | 2011-09-29T14:10:47Z | 2011-25117 | 0 | 0 | 0900006480f42a76 |
| FDA-2011-N-0279-0001 | FDA | None FDA-2011-N-0279 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Reports and Records Under Prescription Drug Marketing Act of 1987 | Notice | N-Notice | 2011-06-06T04:00:00Z | 2011 | 6 | 2011-06-06T04:00:00Z | 2011-08-06T03:59:59Z | 2011-06-06T15:26:52Z | 2011-13442 | 0 | 0 | 0900006480e3d149 |
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;