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 = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_date, posted_month, comment_start_date, 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-2014-0015-0002 | DEA | Exemption From Registration for Persons Authorized Under U.S. Nuclear Regulatory Commission or Agreement State Medical Use Licenses or Permits and Administering the Drug Product DaTscanTM DEA-2014-0015 | Exemptions from Registration: Persons Authorized Under U.S. Nuclear Regulatory Commission or Agreement State Medical Use Licenses or Permits and Administering the Drug Product DaTscan TM | Rule | 2014-11-25T05:00:00Z | 2014 | 11 | 2014-11-25T05:00:00Z | 2015-01-27T04:59:59Z | 2015-01-27T03:04:47Z | 2014-27917 | 0 | 0 | 0900006481944afb | |
| DEA-2012-0008-0193 | DEA | Disposal of Controlled Substances DEA-2012-0008 | Disposal of Controlled Substances | Rule | 2014-09-09T04:00:00Z | 2014 | 9 | 2014-09-09T04:00:00Z | 2014-09-09T15:33:17Z | 2014-20926 | 0 | 0 | 09000064818656d3 | ||
| DEA-2014-0016-0002 | DEA | Schedules of Controlled Substances: Placement of Suvorexant into Schedule IV DEA-2014-0016 | Schedules of Controlled Substances: Placement of Suvorexant into Schedule IV | Rule | 2014-08-28T04:00:00Z | 2014 | 8 | 2014-08-28T04:00:00Z | 2014-12-15T20:19:42Z | 2014-20515 | 0 | 0 | 090000648184be35 | ||
| DEA-2014-0005-0588 | DEA | Schedules of Controlled Substances: Rescheduling of Hydrocodone Combination Products from Schedule III to Schedule II DEA-2014-0005 | Schedules of Controlled Substances: Rescheduling of Hydrocodone Combination Products from Schedule III to Schedule II | Rule | 2014-08-22T04:00:00Z | 2014 | 8 | 2014-08-22T04:00:00Z | 2014-08-22T14:51:38Z | 2014-19922 | 0 | 0 | 090000648183b4c8 | ||
| DEA-2013-0010-0033 | DEA | Schedules of Controlled Substances: Placement of Tramadol into Schedule IV DEA-2013-0010 | Schedules of Controlled Substances: Placement of Tramadol into Schedule IV | Rule | 2014-07-02T04:00:00Z | 2014 | 7 | 2014-07-02T04:00:00Z | 2014-07-02T19:45:46Z | 2014-15548 | 0 | 0 | 09000064817870ba | ||
| DEA-2013-0010-0032 | DEA | Schedules of Controlled Substances: Placement of Tramadol into Schedule IV DEA-2013-0010 | Schedules of Controlled Substances: Placement of Tramadol Into Schedule IV | Rule | 2014-07-02T04:00:00Z | 2014 | 7 | 2014-07-02T04:00:00Z | 2014-07-02T19:18:14Z | 0 | 0 | 090000648178a9ce | |||
| DEA-2014-0006-0001 | DEA | Schedules of Controlled Substances: Temporary Placement of 10 Synthetic Cathinones Into Schedule I DEA-2014-0006 | Schedules of Controlled Substances: Temporary Placement of 10 Synthetic Cathinones into Schedule I | Rule | 2014-03-07T05:00:00Z | 2014 | 3 | 2014-03-07T05:00:00Z | 2014-03-07T14:47:55Z | 2014-04997 | 0 | 0 | 0900006481627767 | ||
| DEA-2013-0002-0008 | DEA | Schedules of Controlled Substances: Placement of Alfaxalone into Schedule IV DEA-2013-0002 | Schedules of Controlled Substances: Placement of Alfaxalone into Schedule IV | Rule | 2014-02-27T05:00:00Z | 2014 | 2 | 2014-02-27T05:00:00Z | 2014-02-27T14:53:19Z | 2014-04332 | 0 | 0 | 09000064815d84db | ||
| DEA-2014-0003-0001 | DEA | Schedules of Controlled Substances: Temporary Placement of Four Synthetic Cannabinoids Into Schedule I DEA-2014-0003 | Schedules of Controlled Substances: Temporary Placement of Four Synthetic Cannabinoids Into Schedule I | Rule | 2014-02-10T05:00:00Z | 2014 | 2 | 2014-02-10T05:00:00Z | 2014-02-11T14:18:27Z | 2014-02848 | 0 | 0 | 09000064815564fa |
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;