documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "DEA-2023-0029" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
- Rule 5
- Proposed Rule 2
- Notice 1
agency_id 1
- DEA 8
| 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-2023-0029-41937 | DEA | Telemedicine Prescribing of Controlled Substances (DEA407) DEA-2023-0029 | Fourth Temporary Extension of COVID-19 Telemedicine Flexibilities for Prescription of Controlled Medications | Rule | 2025-12-31T05:00:00Z | 2025 | 12 | 2025-12-31T05:00:00Z | 2026-01-13T03:01:01Z | 2025-24123 | 0 | 0 | 09000064b9113f32 | ||
| DEA-2023-0029-35465 | DEA | Telemedicine Prescribing of Controlled Substances (DEA407) DEA-2023-0029 | Special Registrations for Telemedicine and Limited State Telemedicine Registrations | Proposed Rule | 2025-01-17T05:00:00Z | 2025 | 1 | 2025-01-17T05:00:00Z | 2025-03-19T03:59:59Z | 2025-03-20T01:00:13Z | 2025-01099 | 0 | 0 | 09000064868e2e65 | |
| DEA-2023-0029-35464 | DEA | Telemedicine Prescribing of Controlled Substances (DEA407) DEA-2023-0029 | Continuity of Care via Telemedicine for Veterans Affairs Patients | Rule | 2025-01-17T05:00:00Z | 2025 | 1 | 2025-01-17T05:00:00Z | 2025-01-21T13:54:28Z | 2025-01044 | 0 | 0 | 09000064868e2ffd | ||
| DEA-2023-0029-35463 | DEA | Telemedicine Prescribing of Controlled Substances (DEA407) DEA-2023-0029 | Third Temporary Extension of COVID-19 Telemedicine Flexibilities for Prescription of Controlled Medications | Rule | 2024-11-19T05:00:00Z | 2024 | 11 | 2024-11-19T05:00:00Z | 2024-11-27T19:50:54Z | 2024-27018 | 0 | 0 | 090000648682777c | ||
| DEA-2023-0029-35462 | DEA | Telemedicine Prescribing of Controlled Substances (DEA407) DEA-2023-0029 | Second Temporary Extension of COVID–19 Telemedicine Flexibilities for Prescription of Controlled Medications | Rule | 2023-10-10T04:00:00Z | 2023 | 10 | 2023-10-10T04:00:00Z | 2023-10-11T12:17:00Z | 2023-22406 | 0 | 0 | 0900006486098b08 | ||
| DEA-2023-0029-35461 | DEA | Telemedicine Prescribing of Controlled Substances (DEA407) DEA-2023-0029 | Telemedicine Notice of Meeting (2023-16889) - DEA407 | Notice | 2023-08-07T04:00:00Z | 2023 | 8 | 2023-08-07T04:00:00Z | 2023-08-07T13:33:03Z | 2023-16889 | 0 | 0 | 0900006485dec41f | ||
| DEA-2023-0029-35460 | DEA | Telemedicine Prescribing of Controlled Substances (DEA407) DEA-2023-0029 | Temporary Extension of COVID–19 Telemedicine Flexibilities for Prescription of Controlled Medications | Rule | 2023-05-10T04:00:00Z | 2023 | 5 | 2023-05-10T04:00:00Z | 2023-05-10T13:01:17Z | 2023-09936 | 0 | 0 | 09000064859ed53c | ||
| DEA-2023-0029-0001 | DEA | Telemedicine Prescribing of Controlled Substances (DEA407) DEA-2023-0029 | Telemedicine Prescribing of Controlled Substances When the Practitioner and the Patient Have Not Had a Prior In-Person Medical Evaluation | Proposed Rule | 2023-03-01T05:00:00Z | 2023 | 3 | 2023-03-01T05:00:00Z | 2023-04-01T03:59:59Z | 2023-04-25T01:00:34Z | 2023-04248 | 0 | 0 | 0900006485732548 |
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;