documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FRA-1998-4898" and document_type = "Rule" 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-1998-4898-0007 | FRA | Annual Adjustment of Monetary Threshold for Reporting Rail Equipment Accidents/Incidents FRA-1998-4898 | U.S. DOT/FRA - Interim Final Rule with Request for Comments | Rule | Federal Register Publication | 2002-12-31T05:00:00Z | 2002 | 12 | 2002-12-31T05:00:00Z | 2003-01-10T04:59:59Z | 2024-11-07T19:02:30Z | 1 | 0 | 0900006480328c99 | |
| FRA-1998-4898-0006 | FRA | Annual Adjustment of Monetary Threshold for Reporting Rail Equipment Accidents/Incidents FRA-1998-4898 | U.S. DOT/FRA - Interim Final Rule with Request for Comments | Rule | Federal Register Publication | 2002-12-30T05:00:00Z | 2002 | 12 | 2002-12-30T05:00:00Z | 2002-12-31T04:59:59Z | 2024-11-07T19:02:30Z | 1 | 0 | 0900006480328c98 | |
| FRA-1998-4898-0005 | FRA | Annual Adjustment of Monetary Threshold for Reporting Rail Equipment Accidents/Incidents FRA-1998-4898 | U.S. DOT/FRA - Final Rule | Rule | Federal Register Publication | 2001-12-26T05:00:00Z | 2001 | 12 | 2001-12-26T05:00:00Z | 2002-01-03T04:59:59Z | 2024-11-07T19:02:30Z | 1 | 0 | 0900006480328c97 | |
| FRA-1998-4898-0003 | FRA | Annual Adjustment of Monetary Threshold for Reporting Rail Equipment Accidents/Incidents FRA-1998-4898 | U.S. DOT/FRA - Final Rule | Rule | Federal Register Publication | 2000-11-21T05:00:00Z | 2000 | 11 | 2000-11-21T05:00:00Z | 2000-11-22T04:59:59Z | 2024-11-07T19:02:29Z | 1 | 0 | 0900006480328c95 | |
| FRA-1998-4898-0004 | FRA | Annual Adjustment of Monetary Threshold for Reporting Rail Equipment Accidents/Incidents FRA-1998-4898 | U.S. DOT/FRA - Final Rule (Draft) | Rule | Federal Register Publication | 2000-11-09T05:00:00Z | 2000 | 11 | 2000-11-09T05:00:00Z | 2000-11-25T04:59:59Z | 2024-11-07T19:02:30Z | 1 | 0 | 0900006480328c96 | |
| FRA-1998-4898-0002 | FRA | Annual Adjustment of Monetary Threshold for Reporting Rail Equipment Accidents/Incidents FRA-1998-4898 | U.S. DOT/FRA - Final Rule | Rule | Federal Register Publication | 1999-12-10T05:00:00Z | 1999 | 12 | 1999-12-10T05:00:00Z | 1999-12-11T04:59:59Z | 2024-11-07T19:02:11Z | 1 | 0 | 0900006480328c94 | |
| FRA-1998-4898-0001 | FRA | Annual Adjustment of Monetary Threshold for Reporting Rail Equipment Accidents/Incidents FRA-1998-4898 | Annual Adjustment of Monetary Threshold for Reporting Rail Equipment Accidents/incidents - Final Rule | Rule | Federal Register Publication | 1998-12-30T05:00:00Z | 1998 | 12 | 1998-12-30T05:00:00Z | 1998-12-31T04:59:59Z | 2024-11-07T19:02:11Z | 1 | 0 | 0900006480328c93 |
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;