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 = "Proposed Rule" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, comment_end_date, 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-GSAR-2016-0016-0001 | GSA | General Services Administration Acquisition Regulation (GSAR); Federal Supply Schedule, Order-Level Materials (GSAR Case 2016-G506) GSA-GSAR-2016-0016 | General Services Administration Acquisition Regulations: Federal Supply Schedule, Order-Level Materials (GSAR Case 2016-G506) | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2016-09-09T04:00:00Z | 2016 | 9 | 2016-09-09T04:00:00Z | 2016-11-09T04:59:59Z | 2016-11-09T02:01:51Z | 2016-21610 | 0 | 0 | 09000064821e6cf4 |
| GSA-GSAR-2016-0015-0001 | GSA | General Services Administration Acquisition Regulation (GSAR); Construction Contract Administration (GSAR Case 2015-G503) GSA-GSAR-2016-0015 | General Services Administration Acquisition Regulations: Construction Contract Administration (GSAR Case 2015-G503) | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2016-09-09T04:00:00Z | 2016 | 9 | 2016-09-09T04:00:00Z | 2016-11-09T04:59:59Z | 2016-09-09T15:03:41Z | 2016-21629 | 0 | 0 | 09000064821e7676 |
| GSA-FTR-2016-0008-0001 | GSA | Federal Travel Regulation; FTR Case 2016-301; Clarificaiton of Payment In Kind for Speakers at Meetings and Conferences GSA-FTR-2016-0008 | Federal Travel Regulations: Clarification of Payment In Kind for Speakers at Meetings and Similar Functions (FTR Case 2016-301) | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2016-08-15T04:00:00Z | 2016 | 8 | 2016-08-15T04:00:00Z | 2016-10-15T03:59:59Z | 2016-09-03T01:00:46Z | 2016-18556 | 0 | 0 | 09000064821755a2 |
| GSA-GSA-2016-0014-0001 | GSA | GSA Unified Agenda of Federal Regulatory and Deregulatory Actions (Spring) GSA-GSA-2016-0014 | Unified Agenda of Federal Regulatory and Deregulatory Actions (Spring 2016) | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2016-06-09T04:00:00Z | 2016 | 6 | 2016-06-09T04:00:00Z | 2016-07-06T19:28:40Z | 2016-12924 | 0 | 0 | 0900006482025cd7 | |
| GSA-GSAR-2016-0010-0001 | GSA | General Services Administration Acquisition Regulation (GSAR); Unenforceable Commercial Supplier Agreement Terms (GSAR Case 2015-G512) GSA-GSAR-2016-0010 | Administration Acquisition Regulations: Unenforceable Commercial Supplier Agreement Terms (GSAR Case 2015–G512) | Proposed Rule | Request for Comment | 2016-05-31T04:00:00Z | 2016 | 5 | 2016-05-31T04:00:00Z | 2016-08-02T03:59:59Z | 2016-08-05T14:57:47Z | 2016-12448 | 0 | 0 | 0900006481fff782 |
| GSA-FTR-2016-0005-0001 | GSA | Federal Travel Regulation; Optimal Use of the Govenrment Contractor-Issued Travel Charge Card (FTR Case 2015-303) GSA-FTR-2016-0005 | Federal Travel Regulations: Optimal Use of the Government Contractor-Issued Travel Charge Card (FTR Case 2015-303) | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2016-01-29T05:00:00Z | 2016 | 1 | 2016-01-29T05:00:00Z | 2016-03-30T03:59:59Z | 2016-03-29T18:00:32Z | 2016-01302 | 0 | 0 | 0900006481e3a479 |
| GSA-FTR-2015-0017-0001 | GSA | Federal Travel Regulation; Updating the Incidental Expenses Definition and the Laundry, Cleaning and Pressing of Clothing Policy (FTR Case 2015-304 GSA-FTR-2015-0017 | Federal Travel Regulation: Incidental Expenses Definition and the Laundry, Cleaning, and Pressing of Clothing Policy (FTR Case 2015-304) | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2016-01-08T05:00:00Z | 2016 | 1 | 2016-01-08T05:00:00Z | 2016-03-09T04:59:59Z | 2016-03-08T20:00:28Z | 2015-33147 | 0 | 0 | 0900006481df6db1 |
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;