documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FRA-2010-0010" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, last_modified, 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-2010-0010-0010 | FRA | CSX Transportation, Inc. - Block Signal Application FRA-2010-0010 | U.S. DOT/FRA - Decision Letter | Other | Decision | 2012-02-08T05:00:00Z | 2012 | 2 | 2012-02-08T05:00:00Z | 2013-08-11T01:45:51Z | 0 | 0 | 0900006480fac974 | ||
| FRA-2010-0010-0006 | FRA | CSX Transportation, Inc. - Block Signal Application FRA-2010-0010 | Petitions for Waivers of Compliance | Notice | Notice of Change | 2011-08-30T04:00:00Z | 2011 | 8 | 2011-08-30T04:00:00Z | 2011-10-15T03:59:59Z | 2011-08-30T13:08:04Z | 2011-22053 | 0 | 0 | 0900006480f08c64 |
| FRA-2010-0010-0005 | FRA | CSX Transportation, Inc. - Block Signal Application FRA-2010-0010 | CSX Transportation, Inc. - Request for Reconsideration of Denial | Other | Petition for Reconsideration | 2011-07-26T04:00:00Z | 2011 | 7 | 2011-07-26T04:00:00Z | 2024-11-12T05:02:00Z | 1 | 0 | 0900006480ecc395 | ||
| FRA-2010-0010-0004 | FRA | CSX Transportation, Inc. - Block Signal Application FRA-2010-0010 | U.S. DOT/FRA - Request for Additional Information | Other | Request | 2011-03-04T05:00:00Z | 2011 | 3 | 2011-03-04T05:00:00Z | 2013-07-27T23:46:37Z | 0 | 0 | 0900006480bfec94 | ||
| FRA-2010-0010-0002 | FRA | CSX Transportation, Inc. - Block Signal Application FRA-2010-0010 | CSX Transportation, Inc. - Block Signal Application | Other | Application | 2010-02-17T05:00:00Z | 2010 | 2 | 2010-02-17T05:00:00Z | 2013-07-27T23:08:30Z | 0 | 0 | 0900006480aa4ed0 | ||
| FRA-2010-0010-0003 | FRA | CSX Transportation, Inc. - Block Signal Application FRA-2010-0010 | U.S. DOT/FRA - Acknowledgement of Receipt of Block Signal Application | Other | Acknowledgement Letter/Receipt | 2010-02-17T05:00:00Z | 2010 | 2 | 2010-02-17T05:00:00Z | 2013-07-27T23:08:30Z | 0 | 0 | 0900006480aa4ede | ||
| FRA-2010-0010-0001 | FRA | CSX Transportation, Inc. - Block Signal Application FRA-2010-0010 | Application for Approval of Discontinuance or Modification: Railroad Signal System or Relief from the Requirements of Title 49 Code of Federal Regulations Part 236 | Rule | Federal Register Publication | 2010-02-08T05:00:00Z | 2010 | 2 | 2010-02-08T05:00:00Z | 2010-03-26T03:59:59Z | 2010-02-12T18:35:04Z | 2010-02614 | 0 | 0 | 0900006480a8fa19 |
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;