documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FRA-2012-0033" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-2012-0033-0013 | FRA | Buy America Waiver Request FRA-2012-0033 | Buy America Waivers: Illinois Department of Transportation; Use of Sure Close Self-Closing Force Adjustable Gate Hinges | Notice | Notice of Intent | 2015-11-30T05:00:00Z | 2015 | 11 | 2015-11-30T05:00:00Z | 2015-12-08T04:59:59Z | 2020-04-01T22:32:06Z | 2015-30205 | 0 | 0 | 0900006481d79646 |
| FRA-2012-0033-0012 | FRA | Buy America Waiver Request FRA-2012-0033 | Buy America Waivers | Notice | Notice of Intent | 2015-11-12T05:00:00Z | 2015 | 11 | 2015-11-12T05:00:00Z | 2015-11-28T04:59:59Z | 2020-04-01T22:31:57Z | 2015-28708 | 0 | 0 | 0900006481d38db9 |
| FRA-2012-0033-0011 | FRA | Buy America Waiver Request FRA-2012-0033 | Buy American Waivers: Rhode Island Department of Transportation, National Railroad Passenger Corporation for Purchase of Two Turnouts and One Crossover | Notice | Notice of Intent | 2015-07-01T04:00:00Z | 2015 | 7 | 2015-07-01T04:00:00Z | 2015-07-07T03:59:59Z | 2020-04-01T22:31:47Z | 2015-16064 | 0 | 0 | 0900006481b630db |
| FRA-2012-0033-0010 | FRA | Buy America Waiver Request FRA-2012-0033 | Buy America Waivers: Sacramento, CA, Department of Public Works Purchase of Variable Refrigerant Flow Heating, Ventilation, and Air Conditioning System | Notice | Notice of Intent | 2015-06-17T04:00:00Z | 2015 | 6 | 2015-06-17T04:00:00Z | 2015-06-23T03:59:59Z | 2020-04-01T22:31:34Z | 2015-14887 | 0 | 0 | 0900006481b4121d |
| FRA-2012-0033-0009 | FRA | Buy America Waiver Request FRA-2012-0033 | Buy America Waivers: Long Island Rail Road; Purchase of Seven U.S.-Made Turnouts Containing Four Non-Domestic Components | Notice | Notice of Intent | 2015-05-21T04:00:00Z | 2015 | 5 | 2015-05-21T04:00:00Z | 2015-05-27T03:59:59Z | 2020-04-01T22:31:21Z | 2015-12332 | 0 | 0 | 0900006481aedfe4 |
| FRA-2012-0033-0008 | FRA | Buy America Waiver Request FRA-2012-0033 | Buy American Waivers | Notice | Notice of Intent | 2015-04-17T04:00:00Z | 2015 | 4 | 2015-04-17T04:00:00Z | 2015-04-23T03:59:59Z | 2020-04-01T22:31:08Z | 2015-08786 | 0 | 0 | 0900006481aab779 |
| FRA-2012-0033-0007 | FRA | Buy America Waiver Request FRA-2012-0033 | Buy American Waivers: Illinois Department of Transportation; Use of Sure Close Self-Closing Force Adjustable Gate Hinges | Notice | Notice of Intent | 2015-02-13T05:00:00Z | 2015 | 2 | 2015-02-13T05:00:00Z | 2015-03-03T04:59:59Z | 2020-03-30T20:20:00Z | 2015-02996 | 0 | 0 | 0900006481a02636 |
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;