documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FRA-2010-0072" and posted_year = 2010 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), 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-0072-0009 | FRA | Capital Metropolitan Transportation Authority – Positive Train Control Plans FRA-2010-0072 | Provisional Approval of CMTY Implementation Plan (PTCIP) Version 2.4 | Other | Other | 2010-12-29T05:00:00Z | 2010 | 12 | 2010-12-29T05:00:00Z | 2017-03-01T16:27:21Z | 0 | 0 | 0900006480bc10ee | ||
| FRA-2010-0072-0008 | FRA | Capital Metropolitan Transportation Authority – Positive Train Control Plans FRA-2010-0072 | PTCIP_Appendix_14.4_Temporal_Separation Agreement | Other | Other | 2010-11-17T05:00:00Z | 2010 | 11 | 2010-11-17T05:00:00Z | 2013-08-11T03:11:26Z | 0 | 0 | 0900006480b78c47 | ||
| FRA-2010-0072-0004 | FRA | Capital Metropolitan Transportation Authority – Positive Train Control Plans FRA-2010-0072 | Capital Metro (CMTY) PTC Implementation Plan (PTCIP) Revision 1.1 | Other | Other | 2010-11-17T05:00:00Z | 2010 | 11 | 2010-11-17T05:00:00Z | 2017-03-01T16:25:42Z | 0 | 0 | 0900006480b78c43 | ||
| FRA-2010-0072-0005 | FRA | Capital Metropolitan Transportation Authority – Positive Train Control Plans FRA-2010-0072 | NPI_Appendix_6.1_CMTY_TT3_ | Other | Other | 2010-11-17T05:00:00Z | 2010 | 11 | 2010-11-17T05:00:00Z | 2013-08-11T03:11:26Z | 0 | 0 | 0900006480b78c44 | ||
| FRA-2010-0072-0007 | FRA | Capital Metropolitan Transportation Authority – Positive Train Control Plans FRA-2010-0072 | PTCIP_Appendix_14.3_Track_Chart_12-01-09 | Other | Other | 2010-11-17T05:00:00Z | 2010 | 11 | 2010-11-17T05:00:00Z | 2013-07-27T23:35:51Z | 0 | 0 | 0900006480b78c46 | ||
| FRA-2010-0072-0006 | FRA | Capital Metropolitan Transportation Authority – Positive Train Control Plans FRA-2010-0072 | NPI_Appendix_6.2_GCOR | Other | Other | 2010-11-17T05:00:00Z | 2010 | 11 | 2010-11-17T05:00:00Z | 2024-11-07T22:25:16Z | 1 | 0 | 0900006480b78c45 | ||
| FRA-2010-0072-0003 | FRA | Capital Metropolitan Transportation Authority – Positive Train Control Plans FRA-2010-0072 | Disapproval Without Prejudice of CMTY Implementation Plan (PTCIP) Revision 1.1 | Other | Other | 2010-10-18T04:00:00Z | 2010 | 10 | 2010-10-18T04:00:00Z | 2017-03-01T16:24:20Z | 0 | 0 | 0900006480b6f98f | ||
| FRA-2010-0072-0002 | FRA | Capital Metropolitan Transportation Authority – Positive Train Control Plans FRA-2010-0072 | Disapproval Without Prejudice of CMTY Implementation Plan (PTCIP) | Other | Other | 2010-07-21T04:00:00Z | 2010 | 7 | 2010-07-21T04:00:00Z | 2024-11-07T22:21:02Z | 1 | 0 | 0900006480b1a1b0 | ||
| FRA-2010-0072-0001 | FRA | Capital Metropolitan Transportation Authority – Positive Train Control Plans FRA-2010-0072 | Capital Metro (CMTY) PTC Implementation Plan (PTCIP) | Other | Other | 2010-04-28T04:00:00Z | 2010 | 4 | 2010-04-28T04:00:00Z | 2024-11-07T22:15:01Z | 1 | 0 | 0900006480ae1084 |
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;