documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "GSA", document_type = "Proposed Rule" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, subtype, posted_date, posted_month, comment_start_date, comment_end_date, 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-FTR-2016-0008-0003 | 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; Withdrawal | Proposed Rule | Withdrawal | 2017-10-13T04:00:00Z | 2017 | 10 | 2017-10-13T04:00:00Z | 2017-10-13T14:39:10Z | 2017-22016 | 0 | 0 | 0900006482bc6a99 | |
| GSA-GSA-2017-0002-0071 | GSA | GSA General Notices - 2017 GSA-GSA-2017-0002 | Evaluation of Existing Federal Management and Federal Property Management Regulations; Extension of Comment Period. | Proposed Rule | Extension of Comment Period | 2017-07-31T04:00:00Z | 2017 | 7 | 2017-07-31T04:00:00Z | 2017-08-15T03:59:59Z | 2017-08-15T01:03:32Z | 2017-15457 | 0 | 0 | 0900006482984ae3 |
| GSA-GSA-2017-0002-0073 | GSA | GSA General Notices - 2017 GSA-GSA-2017-0002 | Evaluation of Existing Leasing Acquisition Regulations; Extension of Comment Period. | Proposed Rule | Extension of Comment Period | 2017-07-31T04:00:00Z | 2017 | 7 | 2017-07-31T04:00:00Z | 2017-08-15T03:59:59Z | 2017-08-15T13:03:23Z | 2017-15454 | 0 | 0 | 0900006482984c0e |
| GSA-GSA-2017-0002-0074 | GSA | GSA General Notices - 2017 GSA-GSA-2017-0002 | Evaluation of Existing Acquisition Regulations; Extension of Comment Period. | Proposed Rule | Extension of Comment Period | 2017-07-31T04:00:00Z | 2017 | 7 | 2017-07-31T04:00:00Z | 2017-08-15T03:59:59Z | 2017-08-15T13:01:22Z | 2017-15458 | 0 | 0 | 0900006482984c50 |
| GSA-GSA-2017-0002-0072 | GSA | GSA General Notices - 2017 GSA-GSA-2017-0002 | Evaluation of Existing Federal Travel Regulation; Extension of Comment Period. | Proposed Rule | Extension of Comment Period | 2017-07-31T04:00:00Z | 2017 | 7 | 2017-07-31T04:00:00Z | 2017-08-15T03:59:59Z | 2017-09-24T00:27:55Z | 2017-15453 | 0 | 0 | 0900006482984b3a |
| GSA-GSA-2017-0002-0007 | GSA | GSA General Notices - 2017 GSA-GSA-2017-0002 | Evaluation of Existing Acquisition Regulations | Proposed Rule | Request for Comment | 2017-05-30T04:00:00Z | 2017 | 5 | 2017-05-30T04:00:00Z | 2017-08-01T03:59:59Z | 2017-08-12T01:03:13Z | 2017-11052 | 0 | 0 | 0900006482665fb9 |
| GSA-GSA-2017-0002-0006 | GSA | GSA General Notices - 2017 GSA-GSA-2017-0002 | Evaluation of Existing Federal Management and Federal Property Management Regulations | Proposed Rule | Request for Comment | 2017-05-30T04:00:00Z | 2017 | 5 | 2017-05-30T04:00:00Z | 2017-08-01T03:59:59Z | 2017-09-02T21:10:24Z | 2017-11057 | 0 | 0 | 0900006482665f29 |
| GSA-GSA-2017-0002-0004 | GSA | GSA General Notices - 2017 GSA-GSA-2017-0002 | Federal Travel Regulation System; 41 CFR Subtitle F-Federal Travel Regulation System Evaluation of Existing Federal Travel Regulations | Proposed Rule | Request for Comment | 2017-05-30T04:00:00Z | 2017 | 5 | 2017-05-30T04:00:00Z | 2017-08-01T03:59:59Z | 2017-08-12T01:02:32Z | 2017-11055 | 0 | 0 | 0900006482665ef7 |
| GSA-GSA-2017-0002-0005 | GSA | GSA General Notices - 2017 GSA-GSA-2017-0002 | Evaluation of Existing Leasing Acquisition Regulations | Proposed Rule | Request for Comment | 2017-05-30T04:00:00Z | 2017 | 5 | 2017-05-30T04:00:00Z | 2017-08-01T03:59:59Z | 2017-08-12T01:03:13Z | 2017-11051 | 0 | 0 | 0900006482665f25 |
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;