documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FRA-2001-10251" and posted_year = 2006 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, comment_end_date, last_modified, 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-2001-10251-0019 | FRA | CSX Transportation - Locomotive Engineer Certification Hearing FRA-2001-10251 | CSX Transportation, Inc. - Brief of Respondent CSX Transportation, Inc. | Other | Brief | 2006-08-28T04:00:00Z | 2006 | 8 | 2006-08-28T04:00:00Z | 2006-08-29T03:59:59Z | 2024-11-11T22:29:12Z | 1 | 0 | 09000064802bc5ad | |
| FRA-2001-10251-0020 | FRA | CSX Transportation - Locomotive Engineer Certification Hearing FRA-2001-10251 | U.S. DOT/FRA - Brief of Co-Respondent the Federal Railroad Administration | Other | Brief | 2006-08-28T04:00:00Z | 2006 | 8 | 2006-08-28T04:00:00Z | 2006-08-29T03:59:59Z | 2024-11-11T22:29:12Z | 1 | 0 | 09000064802bc5af | |
| FRA-2001-10251-0018 | FRA | CSX Transportation - Locomotive Engineer Certification Hearing FRA-2001-10251 | Brotherhood of Locomotive Engineers and Trainmen - Hearing Petitioner R. D. Moore's Opening Submission - EQAL 01-06 | Other | Testimony | 2006-07-31T04:00:00Z | 2006 | 7 | 2006-07-31T04:00:00Z | 2006-08-01T03:59:59Z | 2024-11-11T22:29:12Z | 1 | 0 | 09000064802bc5ac | |
| FRA-2001-10251-0017 | FRA | CSX Transportation - Locomotive Engineer Certification Hearing FRA-2001-10251 | U.S. DOT/FRA - Order Denying Motion to Dismiss & Establishing Briefing Schedule | Other | Order | 2006-07-10T04:00:00Z | 2006 | 7 | 2006-07-10T04:00:00Z | 2006-07-11T03:59:59Z | 2024-11-11T22:29:12Z | 1 | 0 | 09000064802bc5ab | |
| FRA-2001-10251-0016 | FRA | CSX Transportation - Locomotive Engineer Certification Hearing FRA-2001-10251 | Brotherhood of Locomotive Engineers and Trainmen - R.D. Moore, Hearing Petitioner - Motion In Opposition to Respondents' Motion to Dismiss and Petitioner's Status Report | Other | Motion | 2006-06-13T04:00:00Z | 2006 | 6 | 2006-06-13T04:00:00Z | 2006-06-14T03:59:59Z | 2024-11-11T22:29:12Z | 1 | 0 | 09000064802bc5aa | |
| FRA-2001-10251-0015 | FRA | CSX Transportation - Locomotive Engineer Certification Hearing FRA-2001-10251 | U.S. DOT/FRA - Respondent's Status Report and Motion to Dismiss | Other | Report | 2006-05-31T04:00:00Z | 2006 | 5 | 2006-05-31T04:00:00Z | 2006-06-01T03:59:59Z | 2024-11-11T22:29:11Z | 1 | 0 | 09000064802bc5a9 | |
| FRA-2001-10251-0014 | FRA | CSX Transportation - Locomotive Engineer Certification Hearing FRA-2001-10251 | U.S. DOT/FRA - Order to Extend Time to File Joint Status Report | Other | Order | 2006-04-28T04:00:00Z | 2006 | 4 | 2006-04-28T04:00:00Z | 2006-04-29T03:59:59Z | 2024-11-11T22:29:11Z | 1 | 0 | 09000064802bc5a8 |
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;