documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "DEA-2020-0038" 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-2020-0038-0006 | DEA | Schedules of Controlled Substances: Placement of Brorphine in Schedule I DEA-2020-0038 | Schedules of Controlled Substances: Placement of Brorphine in Schedule I; Correction | Rule | 2023-07-19T04:00:00Z | 2023 | 7 | 2023-07-19T04:00:00Z | 2023-07-19T15:15:05Z | 2023-15249 | 0 | 0 | 0900006485cdb926 | ||
| DEA-2020-0038-0005 | DEA | Schedules of Controlled Substances: Placement of Brorphine in Schedule I DEA-2020-0038 | Schedules of Controlled Substances: Placement of Brorphine in Schedule I | Rule | 2023-03-06T05:00:00Z | 2023 | 3 | 2023-03-06T05:00:00Z | 2023-03-07T14:27:36Z | 2023-04364 | 0 | 0 | 09000064857608c9 | ||
| DEA-2020-0038-0004 | DEA | Schedules of Controlled Substances: Placement of Brorphine in Schedule I DEA-2020-0038 | Schedules of Controlled Substances: Temporary Placement of Brorphine in Schedule I | Rule | 2021-03-01T05:00:00Z | 2021 | 3 | 2021-03-01T05:00:00Z | 2023-03-02T13:25:25Z | 2021-04242 | 0 | 0 | 0900006484a5717c | ||
| DEA-2020-0038-0003 | DEA | Schedules of Controlled Substances: Placement of Brorphine in Schedule I DEA-2020-0038 | Three Factor Analysis for Temporary Control of Brorphine 11022020 clean_DOE-20-464 | Other | 2020-12-23T05:00:00Z | 2020 | 12 | 2020-12-23T05:00:00Z | 2020-12-23T19:27:46Z | 0 | 0 | 09000064849c3ac5 | |||
| DEA-2020-0038-0002 | DEA | Schedules of Controlled Substances: Placement of Brorphine in Schedule I DEA-2020-0038 | Three Factor Analysis for Temporary Control of Brorphine | Other | 2020-12-23T00:00:00Z | 2020 | 12 | 2020-12-23T19:21:40Z | 0 | 1 | 09000064849c266d | ||||
| DEA-2020-0038-0001 | DEA | Schedules of Controlled Substances: Placement of Brorphine in Schedule I DEA-2020-0038 | Schedules of Controlled Substances: Temporary Placement of Brorphine in Schedule I | Proposed Rule | 2020-12-03T05:00:00Z | 2020 | 12 | 2020-12-03T05:00:00Z | 2020-12-23T16:19:53Z | 2020-26301 | 0 | 0 | 090000648498412a |
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;