documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "GSA", document_type = "Rule" and posted_year = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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-2013-0011-0001 | GSA | Federal Travel Regulation (FTR); Relocation Allowances; Commuted Rate; FTR Case 2013-301 GSA-FTR-2013-0011 | Federal Travel Regulation: Relocation Allowances; Commuted Rate (FTR Case 2013–301) | Rule | Final Rule | 2013-12-12T05:00:00Z | 2013 | 12 | 2013-12-12T05:00:00Z | 2015-07-06T21:09:21Z | 2013-29209 | 0 | 0 | 09000064814b9f88 | |
| GSA-FMR-2013-0013-0001 | GSA | Federal Management Regulation; Shipping Household Goods; FMR Case 2013-102-2 GSA-FMR-2013-0013 | Federal Management Regulation: Shipping Household Goods (FMR Case 2013–102–2) | Rule | Final Rule | 2013-12-12T05:00:00Z | 2013 | 12 | 2013-12-12T05:00:00Z | 2015-07-06T21:10:45Z | 2013-29212 | 0 | 0 | 09000064814ba57f | |
| GSA-FTR-2013-0012-0001 | GSA | Federal Travel Regulation (FTR); Telework Travel Expenses Test Programs; FTR Case 2011-310 GSA-FTR-2013-0012 | Federal Travel Regulation: Telework Travel Expenses Test Programs (FTR Case 2011–310) | Rule | Final Rule | 2013-12-09T05:00:00Z | 2013 | 12 | 2013-12-09T05:00:00Z | 2015-07-06T21:07:58Z | 2013-29215 | 0 | 0 | 09000064814b26b1 | |
| GSA-FTR-2013-0010-0001 | GSA | Federal Travel Regulation; Agency Requirements for Payment of Expenses Connected with the Death of Certain Employees and Family Members; FTR Case 2013-302 GSA-FTR-2013-0010 | Federal Travel Regulation: Requirements for Payment of Expenses Connected with the Death of Certain Employees and Family Members ( FTR Case 2013–302) | Rule | Final Rule | 2013-12-05T05:00:00Z | 2013 | 12 | 2013-12-05T05:00:00Z | 2015-07-06T21:04:07Z | 2013-28741 | 0 | 0 | 09000064814a9ef3 | |
| GSA-FMR-2013-0014-0001 | GSA | Federal Management Regulation (FMR); Transportation Payment and Audit; FMR Case 2013-102-3 GSA-FMR-2013-0014 | Federal Management Regulations: Transportation Payment and Audit (FMR Case 2013–102–3) | Rule | Final Rule | 2013-11-29T05:00:00Z | 2013 | 11 | 2013-11-29T05:00:00Z | 2015-07-06T21:02:16Z | 2013-28578 | 0 | 0 | 090000648149ef6f | |
| GSA-FTR-2012-0011-0011 | GSA | Federal Travel Regulation; Removal of Conference Lodging Allowance Provisions; FTR Case 2012-301 GSA-FTR-2012-0011 | Federal Travel Regulations: Removal of Conference Lodging Allowance Provisions; FTR Case 2012-301 | Rule | Final Rule | 2013-10-31T04:00:00Z | 2013 | 10 | 2013-10-31T04:00:00Z | 2013-11-15T20:31:21Z | 2013-26014 | 0 | 0 | 090000648146a1bd | |
| GSA-GSA-2012-0010-0001 | GSA | General Services Administration Property Management Regulations GSA-GSA-2012-0010 | Federal Property Management Regulations: Administrative Wage Garnishment; GSPMR Case 2012–105–1 | Rule | Final Rule | 2013-05-20T04:00:00Z | 2013 | 5 | 2013-05-20T04:00:00Z | 2013-09-16T20:56:48Z | 2013-11911 | 0 | 0 | 09000064812eccc6 |
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;