documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "DEA", document_type = "Rule" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| DEA-2011-0013-0006 | DEA | Schedules of Controlled Substances: Placement of Ezogabine Into Schedule V DEA-2011-0013 | Schedules of Controlled Substances: Placement of Ezogabine Into Schedule V | Rule | 2011-12-15T05:00:00Z | 2011 | 12 | 2011-12-15T05:00:00Z | 2015-11-17T17:16:14Z | 2011-32172 | 0 | 0 | 0900006480f83b9e | ||
| DEA-2010-0008-0002 | DEA | Schedules of Controlled Substances: Placement of Carisoprodol into Schedule IV; Announcement of Hearing DEA-2010-0008 | Schedules of Controlled Substances: Placement of Carisoprodol Into Schedule IV | Rule | 2011-12-12T05:00:00Z | 2011 | 12 | 2011-12-12T05:00:00Z | 2015-11-17T17:13:42Z | 2011-31542 | 0 | 0 | 0900006480f80220 | ||
| DEA-2010-0007-0003 | DEA | Implementation of the Methamphetamine Production Prevention Act of 2008 DEA-2010-0007 | Implementation of the Methamphetamine Production Prevention Act of 2008 | Rule | 2011-12-01T05:00:00Z | 2011 | 12 | 2011-12-01T05:00:00Z | 2015-11-17T17:19:13Z | 2011-30630 | 0 | 0 | 0900006480f792f3 | ||
| DEA-2011-0012-0001 | DEA | Schedules of Controlled Substances: Temporary Placement of Three Synthetic Cathinones into Schedule I DEA-2011-0012 | Schedules of Controlled Substances: Temporary Placement of Three Synthetic Cathinones Into Schedule I | Rule | 2011-10-21T04:00:00Z | 2011 | 10 | 2011-10-21T04:00:00Z | 2014-01-17T21:39:29Z | 2011-27282 | 0 | 0 | 0900006480f580f9 | ||
| DEA-2018-0008-0001 | DEA | Electronic Prescriptions for Controlled Substances Clarification, Clarification and Notification, DEA-360 DEA-2018-0008 | Electronic Prescriptions for Controlled Substances Clarification | Rule | 2011-10-19T04:00:00Z | 2011 | 10 | 2018-05-01T20:13:58Z | 2011-26738 | 0 | 0 | 0900006480f55cb7 | |||
| DEA-2010-0011-0002 | DEA | Voluntary Surrender of Certificate of Registration DEA-2010-0011 | Voluntary Surrender of Certificate of Registration | Rule | 2011-10-05T04:00:00Z | 2011 | 10 | 2011-10-05T04:00:00Z | 2015-11-17T16:17:14Z | 2011-25596 | 0 | 0 | 0900006480f4c055 | ||
| DEA-2014-0016-0001 | DEA | Schedules of Controlled Substances: Placement of Suvorexant into Schedule IV DEA-2014-0016 | Chemical Mixtures Containing Listed Forms of Phosphorus and Change in Application Process | Rule | 2011-06-02T04:00:00Z | 2011 | 6 | 2011-06-02T04:00:00Z | 2014-12-15T20:18:57Z | 2011-13686 | 0 | 0 | 0900006480e398b4 | ||
| DEA-2011-0003-0001 | DEA | Self-Certification and Employee Training of Mail-Order Distributors of Scheduled Listed Chemical Products DEA-2011-0003 | Self-Certification and Employee Training of Mail-Order Distributors of Scheduled Listed Chemical Products | Rule | Interim Rule | 2011-04-13T04:00:00Z | 2011 | 4 | 2011-04-13T04:00:00Z | 2011-06-14T03:59:59Z | 2014-01-18T17:19:37Z | 2011-09016 | 0 | 0 | 0900006480c25ed5 |
| DEA-2011-0004-0001 | DEA | Control of Ergocristine as a List I Chemical DEA-2011-0004 | Control of Ergocristine as a List I Chemical | Rule | Final Rule | 2011-03-31T04:00:00Z | 2011 | 3 | 2011-03-31T04:00:00Z | 2014-01-18T19:45:09Z | 2011-7548 | 0 | 0 | 0900006480c15d61 |
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;