documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FRA-2007-0025" and document_type = "Other" 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-0025-0010 | FRA | Big West Oil, LLC - Waiver Petition FRA-2007-0025 | U.S.DOT/FRA- Expiration Notice | Other | Action Memo or Letter | 2017-11-07T05:00:00Z | 2017 | 11 | 2017-11-07T05:00:00Z | 2017-11-07T15:10:54Z | 0 | 0 | 0900006482c4a38a | ||
| FRA-2007-0025-0009 | FRA | Big West Oil, LLC - Waiver Petition FRA-2007-0025 | U.S. DOT/FRA - Decision | Other | Decision | 2013-04-15T04:00:00Z | 2013 | 4 | 2013-04-15T04:00:00Z | 2013-04-15T13:16:29Z | 0 | 0 | 0900006481292801 | ||
| FRA-2007-0025-0008 | FRA | Big West Oil, LLC - Waiver Petition FRA-2007-0025 | U.S. DOT/FRA - Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2013-01-24T05:00:00Z | 2013 | 1 | 2013-01-24T05:00:00Z | 2024-11-12T05:12:30Z | 1 | 0 | 09000064811bcfdd | ||
| FRA-2007-0025-0007 | FRA | Big West Oil, LLC - Waiver Petition FRA-2007-0025 | U.S. DOT/FRA - Waiver Extension Request | Other | Waiver | 2013-01-24T05:00:00Z | 2013 | 1 | 2013-01-24T05:00:00Z | 2024-11-12T05:12:50Z | 1 | 0 | 09000064811bce4e | ||
| FRA-2007-0025-0006 | FRA | Big West Oil, LLC - Waiver Petition FRA-2007-0025 | U.S. DOT/FRA - Waiver Expiration Notice 2 | Other | Letter(s) | 2012-12-27T05:00:00Z | 2012 | 12 | 2012-12-27T05:00:00Z | 2024-11-12T05:11:41Z | 1 | 0 | 090000648119576e | ||
| FRA-2007-0025-0005 | FRA | Big West Oil, LLC - Waiver Petition FRA-2007-0025 | U.S. DOT/FRA - Waiver Expiration Notice | Other | Waiver | 2012-11-07T05:00:00Z | 2012 | 11 | 2012-11-07T05:00:00Z | 2024-11-12T05:06:53Z | 1 | 0 | 090000648115fd6a | ||
| FRA-2007-0025-0004 | FRA | Big West Oil, LLC - Waiver Petition FRA-2007-0025 | U.S. DOT/FRA - Decision Letter | Other | Decision | 2008-05-19T04:00:00Z | 2008 | 5 | 2008-05-19T04:00:00Z | 2024-11-12T04:14:47Z | 1 | 0 | 09000064805adfc7 | ||
| FRA-2007-0025-0002 | FRA | Big West Oil, LLC - Waiver Petition FRA-2007-0025 | U.S. DOT/FRA - Big West Oil, LLC - Acknowledgement of Request for Waiver Petition | Other | Acknowledgement Letter/Receipt | 2008-01-22T05:00:00Z | 2008 | 1 | 2008-01-22T05:00:00Z | 2013-07-27T20:31:55Z | 0 | 0 | 090000648039a761 | ||
| FRA-2007-0025-0001 | FRA | Big West Oil, LLC - Waiver Petition FRA-2007-0025 | U.S. DOT/FRA - Big West Oil, LLC - Waiver Petition | Other | Petition(s) | 2007-12-27T05:00:00Z | 2007 | 12 | 2007-12-27T05:00:00Z | 2013-08-11T02:28:30Z | 0 | 0 | 090000648037f41f |
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;