documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "FRA", document_type = "Rule" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, subtype, posted_date, posted_month, comment_start_date, posted_date (date), comment_start_date (date), comment_end_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FRA-2001-11213-0022 | 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 2016, | Rule | Final Rule | 2015-12-28T05:00:00Z | 2015 | 12 | 2015-12-28T05:00:00Z | 2024-11-11T21:17:47Z | 2015-32544 | 1 | 0 | 0900006481dd4163 | |
| FRA-2008-0136-0008 | FRA | Adjustment of Monetary Threshold for Reporting Rail Equipment Accidents/Incidents for Calendar Year 2009 FRA-2008-0136 | Monetary Threshold for Reporting Rail Equipment Accidents/Incidents for Calendar Year 2016, | Rule | Final Rule | 2015-12-28T05:00:00Z | 2015 | 12 | 2015-12-28T05:00:00Z | 2024-11-11T21:17:25Z | 2015-32545 | 1 | 0 | 0900006481dd3b79 | |
| FRA-2011-0063-0009 | FRA | Passenger Train Door Operation and Door Safety Requirements Rulemaking FRA-2011-0063 | Passenger Train Exterior Side Door Safety | Rule | Final Rule | 2015-12-07T05:00:00Z | 2015 | 12 | 2015-12-07T05:00:00Z | 2016-03-22T03:59:59Z | 2024-11-07T23:35:17Z | 2015-30488 | 1 | 0 | 0900006481d89801 |
| FRA-2015-0123-0005 | FRA | Federal Register Notice: Best Practices for Designing Vision Field Tests for Locomotive Engineers or Conductors FRA-2015-0123 | Best Practices for Designing Vision Field Tests for Locomotive Engineers or Conductors | Rule | Final Rule with Request for Comments | 2015-11-24T05:00:00Z | 2015 | 11 | 2015-11-24T05:00:00Z | 2016-01-26T04:59:59Z | 2024-11-07T23:33:55Z | 2015-29640 | 1 | 0 | 0900006481d6d3b9 |
| FRA-2014-0032-0012 | FRA | Securement of Unattended Equipment FRA-2014-0032 | Securement of Unattended Equipment | Rule | Final Rule | 2015-08-06T04:00:00Z | 2015 | 8 | 2015-08-06T04:00:00Z | 2015-11-10T04:59:59Z | 2024-11-12T05:42:05Z | 2015-19002 | 1 | 0 | 0900006481bc70fe |
| FRA-2001-11213-0020 | FRA | Alcohol/Drugs Testing; Termination of Minimal Random Testing Rates for 2002 FRA-2001-11213 | Alcohol and Drug Testing: Reporting Positive Results for Tramadol as a Controlled Substance | Rule | Final Rule | 2015-07-07T04:00:00Z | 2015 | 7 | 2015-07-07T04:00:00Z | 2024-11-11T21:03:38Z | 2015-16531 | 1 | 0 | 0900006481b6deac | |
| FRA-2009-0041-0045 | FRA | Grade Crossing - Telephone Services FRA-2009-0041 | Systems for Telephonic Notification of Unsafe Conditions at Highway-Rail and Pathway Grade Crossings | Rule | Final Rule | 2015-05-28T04:00:00Z | 2015 | 5 | 2015-05-28T04:00:00Z | 2024-11-11T20:57:48Z | 2015-12775 | 1 | 0 | 0900006481b0897a | |
| FRA-2009-0031-0146 | FRA | Federal Registers for Applications, Notices, and Orders - Miscellaneous FRA-2009-0031 | Railworthiness Directives: Railroad Tank Cars Equipped with Certain McKenzie Valve and Machining, LLC, Valves | Rule | Final Rule | 2015-03-18T04:00:00Z | 2015 | 3 | 2015-03-18T04:00:00Z | 2024-11-07T23:12:09Z | 2015-06213 | 1 | 0 | 0900006481a4e9e6 | |
| FRA-2011-0007-0040 | FRA | National Highway-Rail Crossing Inventory Rulemaking FRA-2011-0007 | National Highway-Rail Crossing Inventory Reporting Requirements | Rule | Final Rule | 2015-01-06T05:00:00Z | 2015 | 1 | 2015-01-06T05:00:00Z | 2015-04-14T03:59:59Z | 2024-11-12T05:29:52Z | 2014-30279 | 1 | 0 | 09000064819a64e6 |
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;