documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FRA-2009-0031" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, last_modified, posted_date (date), comment_start_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-0031-0204 | FRA | Federal Registers for Applications, Notices, and Orders - Miscellaneous FRA-2009-0031 | Funding Opportunity: Restoration and Enhancement Grants Program | Notice | Notice of Intent | 2019-11-06T05:00:00Z | 2019 | 11 | 2019-11-06T05:00:00Z | 2024-11-12T23:12:15Z | 2019-24225 | 1 | 0 | 0900006484122fc4 | |
| FRA-2009-0031-0202 | FRA | Federal Registers for Applications, Notices, and Orders - Miscellaneous FRA-2009-0031 | Funding Opportunity for Magnetic Levitation Deployment Projects | Notice | Notice of Intent | 2019-10-29T04:00:00Z | 2019 | 10 | 2019-10-29T04:00:00Z | 2024-11-12T23:10:27Z | 2019-23535 | 1 | 0 | 0900006484103e84 | |
| FRA-2009-0031-0203 | FRA | Federal Registers for Applications, Notices, and Orders - Miscellaneous FRA-2009-0031 | Revisions to Civil Penalty Amounts | Rule | Correction | 2019-10-29T04:00:00Z | 2019 | 10 | 2019-10-29T04:00:00Z | 2024-11-12T23:10:27Z | C1-2019-14101 | 1 | 0 | 0900006484103f3c | |
| FRA-2009-0031-0201 | FRA | Federal Registers for Applications, Notices, and Orders - Miscellaneous FRA-2009-0031 | Funding Opportunity for Railroad Trespassing Enforcement Grant Program | Notice | Notice of Intent | 2019-10-22T04:00:00Z | 2019 | 10 | 2019-10-22T04:00:00Z | 2024-11-12T23:11:11Z | 2019-22925 | 1 | 0 | 09000064840e8323 | |
| FRA-2009-0031-0200 | FRA | Federal Registers for Applications, Notices, and Orders - Miscellaneous FRA-2009-0031 | Funding Opportunity: Federal-State Partnership for State of Good Repair Program | Notice | Notice of Intent | 2019-10-08T04:00:00Z | 2019 | 10 | 2019-10-08T04:00:00Z | 2024-11-12T23:09:56Z | 2019-21866 | 1 | 0 | 090000648405788c | |
| FRA-2009-0031-0199 | FRA | Federal Registers for Applications, Notices, and Orders - Miscellaneous FRA-2009-0031 | Funding Opportunity: Consolidated Rail Infrastructure and Safety Improvements | Notice | Notice of Intent | 2019-08-19T04:00:00Z | 2019 | 8 | 2019-08-19T04:00:00Z | 2024-11-12T23:06:54Z | 2019-17741 | 1 | 0 | 0900006483e6b746 | |
| FRA-2009-0031-0198 | FRA | Federal Registers for Applications, Notices, and Orders - Miscellaneous FRA-2009-0031 | Revisions to Civil Penalty Amounts | Rule | Final Rule | 2019-07-31T04:00:00Z | 2019 | 7 | 2019-07-31T04:00:00Z | 2024-11-12T23:05:13Z | 2019-14101 | 1 | 0 | 0900006483dd4983 |
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;