documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FRA-2001-11213" and document_type = "Notice" sorted by posted_date descending
This data as json, CSV (advanced)
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FRA-2001-11213-0033 | FRA | Alcohol/Drugs Testing; Termination of Minimal Random Testing Rates for 2002 FRA-2001-11213 | Drug and Alcohol Testing: Determination of Minimum Random Testing Rates for 2026 | Notice | General Notice | 2026-01-08T05:00:00Z | 2026 | 1 | 2026-01-08T05:00:00Z | 2026-01-08T19:18:08Z | 2026-00167 | 0 | 0 | 09000064b911f102 | |
| FRA-2001-11213-0030 | FRA | Alcohol/Drugs Testing; Termination of Minimal Random Testing Rates for 2002 FRA-2001-11213 | Drug and Alcohol Testing: Determination of Minimum Random Testing Rates for 2025 | Notice | General Notice | 2025-01-03T05:00:00Z | 2025 | 1 | 2025-01-03T05:00:00Z | 2025-06-27T09:00:18Z | 2024-31582 | 1 | 0 | 090000648689aaae | |
| FRA-2001-11213-0029 | FRA | Alcohol/Drugs Testing; Termination of Minimal Random Testing Rates for 2002 FRA-2001-11213 | Drug and Alcohol Testing: Determination of Minimum Random Testing Rates; 2023 | Notice | Notice of Change | 2022-12-20T05:00:00Z | 2022 | 12 | 2022-12-20T05:00:00Z | 2022-12-20T14:57:34Z | 2022-27553 | 0 | 0 | 0900006485543f6a | |
| FRA-2001-11213-0028 | FRA | Alcohol/Drugs Testing; Termination of Minimal Random Testing Rates for 2002 FRA-2001-11213 | Drug and Alcohol Testing: Minimum Random Testing Rates for 2022 | Notice | Notice of Intent | 2021-12-29T05:00:00Z | 2021 | 12 | 2021-12-29T05:00:00Z | 2024-11-12T23:36:21Z | 2021-28325 | 1 | 0 | 0900006484effcd5 | |
| FRA-2001-11213-0027 | FRA | Alcohol/Drugs Testing; Termination of Minimal Random Testing Rates for 2002 FRA-2001-11213 | Drug and Alcohol Testing: Determination of Minimum Random Testing Rates for 2021 | Notice | 2020-12-15T05:00:00Z | 2020 | 12 | 2020-12-15T05:00:00Z | 2024-11-12T23:26:37Z | 2020-27521 | 1 | 0 | 090000648499f351 | ||
| FRA-2001-11213-0026 | FRA | Alcohol/Drugs Testing; Termination of Minimal Random Testing Rates for 2002 FRA-2001-11213 | Drug and Alcohol Testing: Determination of Minimum Random Testing Rates for 2020 | Notice | Notice of Intent | 2020-01-23T05:00:00Z | 2020 | 1 | 2020-01-23T05:00:00Z | 2024-11-12T23:16:10Z | 2020-01011 | 1 | 0 | 09000064842de78c | |
| FRA-2001-11213-0025 | FRA | Alcohol/Drugs Testing; Termination of Minimal Random Testing Rates for 2002 FRA-2001-11213 | Drug and Alcohol Testing: Determination of Minimum Random Testing Rates for 2019 | Notice | Notice of Intent | 2018-12-28T05:00:00Z | 2018 | 12 | 2018-12-28T05:00:00Z | 2024-11-12T22:52:05Z | 2018-28290 | 1 | 0 | 09000064839cb8f5 | |
| FRA-2001-11213-0015 | FRA | Alcohol/Drugs Testing; Termination of Minimal Random Testing Rates for 2002 FRA-2001-11213 | Alcohol and Drug Testing: Determination of Minimum Random Testing Rates for 2012 | Notice | Notice of Change | 2011-12-27T05:00:00Z | 2011 | 12 | 2011-12-27T05:00:00Z | 2024-11-11T21:36:13Z | 2011-33046 | 1 | 0 | 0900006480f897ed | |
| FRA-2001-11213-0003 | FRA | Alcohol/Drugs Testing; Termination of Minimal Random Testing Rates for 2002 FRA-2001-11213 | U.S. DOT/FRA - Notice of Determination (Original) | Notice | Notice | 2002-12-30T05:00:00Z | 2002 | 12 | 2002-12-30T05:00:00Z | 2002-12-31T04:59:59Z | 2024-11-11T21:56:15Z | 1 | 0 | 09000064802b3c35 |
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;