documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "GSA-FTR-2012-0004" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date (date), comment_start_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| GSA-FTR-2012-0004-0006 | GSA | Federal Travel Regulations; Notices 2012 GSA-FTR-2012-0004 | Privately Owned Vehicle Mileage Reimbursement Rates (Notice–FTR 2012–01) | Notice | Notice of Bulletins | 2012-12-28T05:00:00Z | 2012 | 12 | 2012-12-28T05:00:00Z | 2015-07-06T19:22:57Z | 2012-31304 | 0 | 0 | 090000648119ddf3 | |
| GSA-FTR-2012-0004-0005 | GSA | Federal Travel Regulations; Notices 2012 GSA-FTR-2012-0004 | Maximum Per Diem Rates for the Continental United States; Notice–MA–2012–02 | Notice | General Notice | 2012-09-05T04:00:00Z | 2012 | 9 | 2012-09-05T04:00:00Z | 2015-03-31T14:29:29Z | 2012-21854 | 0 | 0 | 0900006481105ced | |
| GSA-FTR-2012-0004-0002 | GSA | Federal Travel Regulations; Notices 2012 GSA-FTR-2012-0004 | Meetings: Federal Travel Regulation; Relocation Allowances; Notice–FTR–2012–01 | Notice | Meeting | 2012-06-25T04:00:00Z | 2012 | 6 | 2012-06-25T04:00:00Z | 2012-07-23T12:10:42Z | 2012-15432 | 0 | 0 | 0900006481063a6f | |
| GSA-FTR-2012-0004-0004 | GSA | Federal Travel Regulations; Notices 2012 GSA-FTR-2012-0004 | Improving Mail Management Policies, Procedures, and Activities; Notice–FMR–2012–G–03 | Notice | Notice of Bulletins | 2012-05-29T04:00:00Z | 2012 | 5 | 2012-05-29T04:00:00Z | 2015-01-26T21:54:38Z | 2012-12985 | 0 | 0 | 090000648101f7bf | |
| GSA-FTR-2012-0004-0001 | GSA | Federal Travel Regulations; Notices 2012 GSA-FTR-2012-0004 | Privately Owned Vehicle Mileage Reimbursement Rates; GSA Bulletin FTR 12–06 | Notice | Notice of Bulletins | 2012-04-17T04:00:00Z | 2012 | 4 | 2012-04-17T04:00:00Z | 2012-05-07T20:59:01Z | 2012-09168 | 0 | 0 | 0900006480ff280e | |
| GSA-FTR-2012-0004-0003 | GSA | Federal Travel Regulations; Notices 2012 GSA-FTR-2012-0004 | Privately Owned Vehicle Mileage Reimbursement Rates | Notice | Notice of Bulletins | 2012-01-17T05:00:00Z | 2012 | 1 | 2012-01-17T05:00:00Z | 2013-01-09T20:02:11Z | 2012-00623 | 0 | 0 | 0900006480f98825 |
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;