documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "FRA", document_type = "Proposed Rule" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, subtype, posted_month, open_for_comment, 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-2009-0033-0040 | FRA | Training Standards for Railroad Employees FRA-2009-0033 | Training, Qualification, and Oversight for Safety-Related Railroad Employees | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2017-12-20T05:00:00Z | 2017 | 12 | 2017-12-20T05:00:00Z | 2018-01-20T04:59:59Z | 2024-11-07T01:13:14Z | 2017-27272 | 1 | 0 | 0900006482d3e120 |
| FRA-2009-0031-0182 | FRA | Federal Registers for Applications, Notices, and Orders - Miscellaneous FRA-2009-0031 | Environmental Impacts and Related Procedures | Proposed Rule | Request for Comment | 2017-09-29T04:00:00Z | 2017 | 9 | 2017-09-29T04:00:00Z | 2017-10-19T18:42:47Z | 2017-20565 | 0 | 0 | 0900006482b8b15e | |
| FRA-2009-0031-0181 | FRA | Federal Registers for Applications, Notices, and Orders - Miscellaneous FRA-2009-0031 | Program for Eliminating Duplication of Environmental Reviews | Proposed Rule | Request for Comment | 2017-09-28T04:00:00Z | 2017 | 9 | 2017-09-28T04:00:00Z | 2017-10-19T18:39:34Z | 2017-20561 | 0 | 0 | 0900006482b86e5e | |
| FRA-2015-0111-0119 | FRA | Medical Certification of Transportation Workers in Safety Sensitive Positions; Individuals Exhibiting Risk Factors for Moderate-to-Severe Obstructive Sleep Apnea FRA-2015-0111 | Evaluation of Safety Sensitive Personnel for Moderate-to-Severe Obstructive Sleep Apnea | Proposed Rule | Advance Notice of Proposed Rulemaking (ANPRM) | 2017-08-08T04:00:00Z | 2017 | 8 | 2017-08-08T04:00:00Z | 2017-08-08T13:14:58Z | 2017-16451 | 0 | 0 | 09000064829d679f | |
| FRA-2013-0060-0007 | FRA | Passenger Equipment Safety Standards; Standards for Alternative Compliance and High Speed Trainsets FRA-2013-0060 | Passenger Equipment Safety Standards: Alternative Compliance and High-Speed Trainsets | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2017-02-13T05:00:00Z | 2017 | 2 | 2017-02-13T05:00:00Z | 2017-03-22T03:59:59Z | 2017-05-05T01:02:01Z | 2017-02877 | 0 | 0 | 09000064824bc404 |
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;