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 = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, subtype, 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-2022-0019-0001 | GSA | General Services Administration Acquisition Regulation (GSAR): GSAR Case 2019-G503, Streamline GSA Commercial Contract Clause Requirements GSA-GSAR-2022-0019 | General Services Administration Acquisition Regulation: Streamline Commercial Contract Clause Requirements | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2022-12-20T05:00:00Z | 2022 | 12 | 2022-12-20T05:00:00Z | 2023-02-22T04:59:59Z | 2022-12-23T17:55:56Z | 2022-27106 | 0 | 0 | 0900006485543fa9 |
| GSA-GSA-2022-0017-0001 | GSA | GSPMR Case-2022-105-1, Social Security Number Fraud Prevention GSA-GSA-2022-0017 | Property Management Regulations: Enterprise Data and Privacy Management Office; Social Security Number Fraud Prevention | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2022-10-07T04:00:00Z | 2022 | 10 | 2022-10-07T04:00:00Z | 2022-12-07T04:59:59Z | 2022-11-12T02:01:07Z | 2022-21506 | 0 | 0 | 09000064853d45d9 |
| GSA-GSAR-2022-0014-0026 | GSA | General Services Administration Acquisition Regulation (GSAR); Single-Use Plastics and Packaging GSA-GSAR-2022-0014 | General Services Administration Acquisition Regulation: Single-Use Plastics and Packaging | Proposed Rule | Advance Notice of Proposed Rulemaking (ANPRM) | 2022-09-08T04:00:00Z | 2022 | 9 | 2022-09-08T04:00:00Z | 2022-09-28T03:59:59Z | 2022-09-29T01:01:23Z | 2022-19376 | 0 | 0 | 09000064852ca0d0 |
| GSA-GSAR-2022-0014-0001 | GSA | General Services Administration Acquisition Regulation (GSAR); Single-Use Plastics and Packaging GSA-GSAR-2022-0014 | General Services Administration Acquisition Regulation: Single-Use Plastics and Packaging | Proposed Rule | Advance Notice of Proposed Rulemaking (ANPRM) | 2022-07-07T04:00:00Z | 2022 | 7 | 2022-07-07T04:00:00Z | 2022-09-07T03:59:59Z | 2022-09-08T01:01:00Z | 2022-14403 | 0 | 0 | 09000064851b442c |
| GSA-FTR-2022-0010-0001 | GSA | Federal Travel Regulation (FTR); FTR Case 2022-01; Constructive Cost GSA-FTR-2022-0010 | Federal Travel Regulation: Constructive Cost | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2022-05-27T04:00:00Z | 2022 | 5 | 2022-05-27T04:00:00Z | 2022-07-27T03:59:59Z | 2022-05-31T13:19:58Z | 2022-11096 | 0 | 0 | 09000064850fd6c3 |
| GSA-FTR-2022-0005-0001 | GSA | FTR GSA-FTR-2022-0005 | Federal Travel Regulation: Common Carrier Transportation | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2022-03-03T05:00:00Z | 2022 | 3 | 2022-03-03T05:00:00Z | 2022-05-03T03:59:59Z | 2022-04-29T01:01:19Z | 2022-03068 | 0 | 0 | 0900006484fb7fb2 |
| GSA-FMR-2019-0015-0001 | GSA | Federal Management Regulation; Replacement of Personal Property Pursuant to the Exchange/Sale Authority; FMR Case 2019-102-01 GSA-FMR-2019-0015 | Federal Management Regulation: Replacement of Personal Property Pursuant to the Exchange/Sale Authority | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2022-02-18T05:00:00Z | 2022 | 2 | 2022-02-18T05:00:00Z | 2022-04-20T03:59:59Z | 2022-04-20T01:00:26Z | 2022-03379 | 0 | 0 | 0900006484f85859 |
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;