documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "FRA-2007-27322" and document_type = "Rule" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2007-27322-0018 | FRA | Union Pacific Railroad - Notice of Product Development FRA-2007-27322 | Notice of Request for an Extension of a Waiver of Compliance | Rule | Federal Register Publication | 2009-10-27T04:00:00Z | 2009 | 10 | 2009-10-27T04:00:00Z | 2009-10-28T03:59:59Z | 2009-10-27T17:02:01Z | E9-25818 | 0 | 0 | 0900006480a4c06c |
| FRA-2007-27322-0017 | FRA | Union Pacific Railroad - Notice of Product Development FRA-2007-27322 | Request for an Extension of an Informational Filing: Union Pacific Railroad Co. | Rule | Federal Register Publication | 2009-10-13T04:00:00Z | 2009 | 10 | 2009-10-13T04:00:00Z | 2009-10-14T03:59:59Z | 2024-11-07T22:08:43Z | E9-24478 | 1 | 0 | 0900006480a41226 |
| FRA-2007-27322-0009 | FRA | Union Pacific Railroad - Notice of Product Development FRA-2007-27322 | U.S. DOT/FRA - Notice of Informational Filing | Rule | Federal Register Publication | 2007-08-21T04:00:00Z | 2007 | 8 | 2007-08-21T04:00:00Z | 2007-08-22T03:59:59Z | 2024-11-08T04:28:15Z | 1 | 0 | 09000064802b63c1 | |
| FRA-2007-27322-0008 | FRA | Union Pacific Railroad - Notice of Product Development FRA-2007-27322 | U.S. DOT/FRA - Notice of Petition for Waiver of Compliance | Rule | Federal Register Publication | 2007-08-13T04:00:00Z | 2007 | 8 | 2007-08-13T04:00:00Z | 2007-08-14T03:59:59Z | 2024-11-08T04:28:15Z | 1 | 0 | 09000064802b63c0 | |
| FRA-2007-27322-0002 | FRA | Union Pacific Railroad - Notice of Product Development FRA-2007-27322 | U.S. DOT/FRA - Notice of Product Development | Rule | Federal Register Publication | 2007-03-14T04:00:00Z | 2007 | 3 | 2007-03-14T04:00:00Z | 2007-03-15T03:59:59Z | 2024-11-08T04:27:48Z | 1 | 0 | 09000064802b63ba |
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;