documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "DEA", document_type = "Rule" and posted_year = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-2013-0009-0006 | DEA | Schedules of Controlled Substances: Placement of Perampanel into Schedule III DEA-2013-0009 | Schedules of Controlled Substances: Placement of Perampanel into Schedule III | Rule | 2013-12-02T05:00:00Z | 2013 | 12 | 2013-12-02T05:00:00Z | 2014-01-17T21:40:26Z | 2013-28778 | 0 | 0 | 09000064814a210b | ||
| DEA-2013-0011-0001 | DEA | Schedules of Controlled Substances: Temporary Placement of Three Synthetic Phenethylamines into Schedule I DEA-2013-0011 | Schedules of Controlled Substances: Temporary Placement of Three Synthetic Phenethylamines into Schedule I | Rule | 2013-11-15T05:00:00Z | 2013 | 11 | 2013-11-15T05:00:00Z | 2014-01-17T21:40:23Z | 2013-27315 | 0 | 0 | 0900006481481e93 | ||
| DEA-2013-0004-0001 | DEA | Schedules of Controlled Substances: Temporary Placement of Three Synthetic Cannabinoids Into Schedule I DEA-2013-0004 | Schedules of Controlled Substances: Temporary Placement of Three Synthetic Cannabinoids into Schedule I | Rule | 2013-05-16T04:00:00Z | 2013 | 5 | 2013-05-16T04:00:00Z | 2014-01-18T19:53:40Z | 2013-11593 | 0 | 0 | 09000064812e78f0 | ||
| DEA-2012-0007-0074 | DEA | Schedules of Controlled Substances: Placement of Lorcaserin into Schedule IV DEA-2012-0007 | Schedules of Controlled Substances: Placement of Lorcaserin into Schedule IV | Rule | 2013-05-08T04:00:00Z | 2013 | 5 | 2013-05-08T04:00:00Z | 2015-11-17T16:55:33Z | 2013-10895 | 0 | 0 | 09000064812c45f0 | ||
| DEA-2012-0006-0019 | DEA | Schedules of Controlled Substances: Placement of Methylone Into Schedule I DEA-2012-0006 | Schedules of Controlled Substances: Placement of Methylone into Schedule I | Rule | 2013-04-12T04:00:00Z | 2013 | 4 | 2013-04-12T04:00:00Z | 2015-11-17T17:11:30Z | 2013-08673 | 0 | 0 | 090000648129176f | ||
| DEA-2015-0023-0001 | DEA | Establishment of Drug Codes for 26 Substances DEA-2015-0023 | Establishment of Drug Codes for 26 Substances | Rule | 2013-01-04T05:00:00Z | 2013 | 1 | 2013-01-04T05:00:00Z | 2015-11-17T17:24:57Z | 2012-31698 | 0 | 0 | 09000064811a802a |
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;