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 = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, withdrawn, posted_date (date), comment_start_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-2007-0113-0011 | DEA | Combat Methamphetamine Epidemic Act of 2005: Fee for Self- Certification for Regulated Sellers of Scheduled Listed Chemical Products DEA-2007-0113 | Combat Methamphetamine Epidemic Act of 2005: Fee for Self- Certification for Regulated Sellers of Scheduled Listed Chemical Products | Rule | 2008-12-29T05:00:00Z | 2008 | 12 | 2008-12-29T05:00:00Z | 2014-01-18T19:13:42Z | E8-30800 | 0 | 0 | 0900006480805ea1 | ||
| DEA-2008-0014-0001 | DEA | Import and Production Quotas for Certain List I Chemicals DEA-2008-0014 | Import and Production Quotas for Certain List I Chemicals | Rule | 2008-12-03T05:00:00Z | 2008 | 12 | 2008-12-03T05:00:00Z | 2014-01-18T16:19:49Z | E8-28651 | 0 | 0 | 09000064807cab8d | ||
| DEA-2008-0012-0001 | DEA | Control of a Chemical Precursor Used in the Illicit Manufacture of Fentanyl as a List I Chemical DEA-2008-0012 | Control of a Chemical Precursor Used in the Illicit Manufacture of Fentanyl as a List I Chemical | Rule | 2008-07-25T04:00:00Z | 2008 | 7 | 2008-07-25T04:00:00Z | 2014-01-18T17:48:52Z | E8-17034 | 0 | 0 | 09000064806955a5 | ||
| DEA-2008-0011-0001 | DEA | Redelegation of Functions DEA-2008-0011 | Redelegation of Functions | Rule | 2008-07-15T04:00:00Z | 2008 | 7 | 2008-07-15T04:00:00Z | 2014-01-18T17:55:22Z | E8-16012 | 0 | 0 | 090000648067530e | ||
| DEA-2007-0107-0002 | DEA | Elimination of Exemptions for Chemical Mixtures Containing the List I Chemicals Ephedrine and/or Pseudoephedrine DEA-2007-0107 | Elimination of Exemptions for Chemical Mixtures Containing the List I Chemicals Ephedrine and/or Pseudoephedrine | Rule | Final Rule | 2008-07-10T04:00:00Z | 2008 | 7 | 2008-07-10T04:00:00Z | 2011-06-11T15:37:14Z | E8-15704 | 0 | 0 | 090000648066394e | |
| DEA-2008-0008-0001 | DEA | Changes to Patient Limitation for Dispensing or Prescribing Approved Narcotic Controlled Substances for Maintenance or Detoxification Treatment by Qualified Individual Practitioners DEA-2008-0008 | Changes to Patient Limitation for Dispensing or Prescribing Approved Narcotic Controlled Substances for Maintenance or Detoxification Treatment by Qualified Individual Practitioners | Rule | 2008-05-22T04:00:00Z | 2008 | 5 | 2008-05-22T04:00:00Z | 2014-01-17T22:27:00Z | E8-11471 | 0 | 0 | 09000064805f84aa | ||
| DEA-2008-0004-0001 | DEA | Schedules of Controlled Substances: Exempt Anabolic Steroid Products DEA-2008-0004 | Schedules of Controlled Substances: Exempt Anabolic Steroid Products | Rule | Final Rule | 2008-04-25T04:00:00Z | 2008 | 4 | 2008-04-25T04:00:00Z | 2014-01-17T20:59:58Z | 14178 | 0 | 0 | 0900006480533d83 | |
| DEA-2008-0001-0004 | DEA | Registration Requirements for Importers and Manufacturers of Prescription Drug Products Containing Ephedrine, Pseudoephedrine, or Phenylpropanolamine DEA-2008-0001 | Schedules of Controlled Substances: Exempt Anabolic Steroid Products | Rule | 2008-03-17T00:00:00Z | 2008 | 3 | 2014-01-17T20:41:56Z | 0 | 1 | 09000064803faa63 | ||||
| DEA-2008-0003-0001 | DEA | Authorized Sources of Narcotic Raw Materials DEA-2008-0003 | Authorized Sources of Narcotic Raw Materials | Rule | Final Rule | 2008-02-06T05:00:00Z | 2008 | 2 | 2008-02-06T05:00:00Z | 2014-01-18T17:25:42Z | E8-02142 | 0 | 0 | 09000064803a9261 |
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;