documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "GSA", document_type = "Rule" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, subtype, posted_month, last_modified, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| GSA-FMR-2008-0001-0008 | GSA | 2008 General Services Administration, Federal Management Regulation (FMR) Rules GSA-FMR-2008-0001 | Federal Management Regulation; FMR Case 2008-102-3, Real Property Policies Update - Smoking Restrictions | Rule | Final | 2008-12-19T05:00:00Z | 2008 | 12 | 2008-12-19T05:00:00Z | 2017-09-18T14:24:14Z | E8-30180 | 0 | 0 | 09000064807e2d43 | |
| GSA-GSAR-2008-0007-0097 | GSA | 2008, 2009, and 2010, 2011, 2012 General Services Administration Acquisition Regulations GSA-GSAR-2008-0007 | General Services Administration Acquisition Regulation; GSAR Case 2007-G501, Protests, Disputes, and Appeals | Rule | Final | 2008-12-09T05:00:00Z | 2008 | 12 | 2008-12-09T05:00:00Z | 2011-06-11T17:28:04Z | E8-29061 | 0 | 0 | 09000064807d3c39 | |
| GSA-GSAR-2008-0007-0040 | GSA | 2008, 2009, and 2010, 2011, 2012 General Services Administration Acquisition Regulations GSA-GSAR-2008-0007 | GSAR Amendmnt 2008-02; GSAR Case 2008-G517; Cooperative Purchasing-Acquisition of Security and Law Enforcement Related Goods and Services (Schedule 84) by State and Local Governments Through Federal Supply Schedules (Change 23) | Rule | Interim | 2008-09-19T04:00:00Z | 2008 | 9 | 2008-09-19T04:00:00Z | 2008-11-19T04:59:59Z | 2011-06-11T17:28:06Z | E8-21927 | 0 | 0 | 090000648070f50b |
| GSA-GSAR-2008-0007-0023 | GSA | 2008, 2009, and 2010, 2011, 2012 General Services Administration Acquisition Regulations GSA-GSAR-2008-0007 | GSAR Amendment 2008-01, GSAR Case 2006-G505, Rewrite of GSAR Part 522, Application of Labor Laws to Government Acquisitions (Change 22) | Rule | Final | 2008-08-08T04:00:00Z | 2008 | 8 | 2008-08-08T04:00:00Z | 2011-06-11T17:28:11Z | E8-18290 | 0 | 0 | 09000064806b756f | |
| GSA-FTR-2008-0002-0001 | GSA | 2008 Federal Travel Regulations (FTR), General Services Administration GSA-FTR-2008-0002 | FTR Amendment 2008-05, FTR Case 2008-304, Privately Owned Vehicle Mileage Reimbursement | Rule | Final | 2008-07-28T04:00:00Z | 2008 | 7 | 2008-07-28T04:00:00Z | 2017-09-18T14:26:40Z | E8-17183 | 0 | 0 | 090000648069c3c6 | |
| GSA-FTR-2008-0002-0002 | GSA | 2008 Federal Travel Regulations (FTR), General Services Administration GSA-FTR-2008-0002 | Federal Travel Regulation; Relocation Allowances; Relocation Income Tax (RIT) Allowance Tax Tables | Rule | 2008-06-25T04:00:00Z | 2008 | 6 | 2008-06-25T04:00:00Z | 2017-09-18T14:26:40Z | E8-14276 | 0 | 0 | 090000648063bc7e |
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;