documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FRA-2001-11068" and posted_year = 2004 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-2001-11068-0040 | FRA | U.S. DOT/FRA - Notice of Proposed Rulemaking FRA-2001-11068 | U.S. DOT/FRA - Denial of Waiver Petition | Other | Decision | 2004-10-04T04:00:00Z | 2004 | 10 | 2004-10-04T04:00:00Z | 2004-10-05T03:59:59Z | 2024-11-08T05:39:02Z | 1 | 0 | 09000064803035de | |
| FRA-2001-11068-0039 | FRA | U.S. DOT/FRA - Notice of Proposed Rulemaking FRA-2001-11068 | U.S. DOT/FRA - Petition for Waiver of Compliance - St. Lawrence & Atlantic Railroad, Quebec, Inc. | Rule | Federal Register Publication | 2004-08-10T04:00:00Z | 2004 | 8 | 2004-08-10T04:00:00Z | 2004-08-11T03:59:59Z | 2024-11-08T05:39:02Z | 1 | 0 | 09000064803035dc | |
| FRA-2001-11068-0038 | FRA | U.S. DOT/FRA - Notice of Proposed Rulemaking FRA-2001-11068 | St. Lawrence & Atlantic Railroad - Appeal for Amendment to the Executive Summary of Part 219 Final Rule on Expanded Application of FRA Alcohol & Drug Rules to Foreign Railroad Foreign Based (FRFB) Employees Who Perform Train Service in the U.S. | Other | Appeal | 2004-06-15T04:00:00Z | 2004 | 6 | 2004-06-15T04:00:00Z | 2004-06-16T03:59:59Z | 2024-11-08T05:39:01Z | 1 | 0 | 09000064803035db | |
| FRA-2001-11068-0037 | FRA | U.S. DOT/FRA - Notice of Proposed Rulemaking FRA-2001-11068 | U.S. DOT/FRA - Federal Register - Part II - 49 CFR Part 219 - Vol. 69, No. 70/Monday, April 12, 2004/Rules and Regulations | Rule | Federal Register Publication | 2004-04-19T04:00:00Z | 2004 | 4 | 2004-04-19T04:00:00Z | 2004-04-20T03:59:59Z | 2024-11-08T05:39:01Z | 1 | 0 | 09000064803035da | |
| FRA-2001-11068-0036 | FRA | U.S. DOT/FRA - Notice of Proposed Rulemaking FRA-2001-11068 | U.S. DOT/FRA - Final Rule | Rule | Federal Register Publication | 2004-04-12T04:00:00Z | 2004 | 4 | 2004-04-12T04:00:00Z | 2004-04-13T03:59:59Z | 2024-11-08T05:39:01Z | 1 | 0 | 09000064803035d9 | |
| FRA-2001-11068-0035 | FRA | U.S. DOT/FRA - Notice of Proposed Rulemaking FRA-2001-11068 | U.S. DOT/FRA - Final Regulatory Evaluation - Control of Alcohol and Drug Use: Expanded Application of Random Testing and Other Requirements toForeign Railroad Foreign-Based Employees Who Perform Train or Dispatching Service in the United States | Supporting & Related Material | Analysis | 2004-04-01T05:00:00Z | 2004 | 4 | 2024-11-08T05:38:34Z | 0 | 0 | 09000064803035d8 |
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;