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 = "Proposed Rule" and posted_year = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-2013-0009-0001 | GSA | Federal Management Regulation (FMR); Obligating Authority; FMR Case 2013-102-1 GSA-FMR-2013-0009 | Federal Management Regulation: Obligating Authority; FMR Case 2013–102–1 | Proposed Rule | Request for Comment | 2013-08-16T04:00:00Z | 2013 | 8 | 2013-08-16T04:00:00Z | 2013-10-16T03:59:59Z | 2013-10-31T01:02:52Z | 2013-19948 | 0 | 0 | 09000064813b5f0c |
| GSA-FMR-2012-0017-0001 | GSA | Federal Management Regulation (FMR); Restrictions on International Transportation of Freight and Household Goods; FMR Case 2012-102-5 GSA-FMR-2012-0017 | Federal Management Regulations: Restrictions on International Transportation of Freight and Household Goods; FMR Case 2012–102–5 | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2013-06-19T04:00:00Z | 2013 | 6 | 2013-06-19T04:00:00Z | 2013-07-20T03:59:59Z | 2013-07-25T01:01:24Z | 2013-14531 | 0 | 0 | 09000064813311bb |
| GSA-GSAR-2013-0006-0001 | GSA | General Services Administration Acquisition Regulation (GSAR); Electronic Contracting Initiative; GSAR Case 2012-G501 GSA-GSAR-2013-0006 | Acquisition Regulations: Electronic Contracting Initiative; GSAR Case 2012–G501 | Proposed Rule | Request for Comment | 2013-05-28T04:00:00Z | 2013 | 5 | 2013-05-28T04:00:00Z | 2013-07-30T03:59:59Z | 2013-07-29T14:56:57Z | 2013-12566 | 0 | 0 | 09000064812fb022 |
| GSA-FMR-2008-0001-0009 | GSA | 2008 General Services Administration, Federal Management Regulation (FMR) Rules GSA-FMR-2008-0001 | Federal Management Regulations: Mail Management; Financial Requirements for All Agencies; FMR Case 2008-102-4 | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2013-05-13T04:00:00Z | 2013 | 5 | 2013-05-13T04:00:00Z | 2013-07-13T03:59:59Z | 2017-09-18T14:24:15Z | 2013-11139 | 0 | 0 | 09000064812dfc20 |
| GSA-GSA-2012-0001-0038 | GSA | Information Collections GSA-GSA-2012-0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: General Services Administration Acquisition Regulation; Modifications 552.243-72 (Multiple Award Schedules); OMB Control No. 3090–00XX | Proposed Rule | Request for Comment | 2013-03-26T04:00:00Z | 2013 | 3 | 2013-03-26T04:00:00Z | 2013-04-26T03:59:59Z | 2013-09-17T12:28:05Z | 2013-06860 | 0 | 0 | 09000064812453ad |
| GSA-GSA-2013-0003-0002 | GSA | GSA Unified Agendas and Retrospective Analysis GSA-GSA-2013-0003 | REGULATORY AGENDA Semiannual Regulatory Agenda | Proposed Rule | Supplemental Notice of Proposed Rulemaking (SNPRM) | 2013-01-08T05:00:00Z | 2013 | 1 | 2013-01-08T05:00:00Z | 2013-01-09T23:30:19Z | 2012-31504 | 0 | 0 | 09000064811b0828 |
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;