documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "GSA-GSA-2018-0001" and posted_year = 2019 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-GSA-2018-0001-0053 | GSA | GSA Information Collections -2018 GSA-GSA-2018-0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: GSA 3729 Wireless Telecommunications Company Application | Notice | General Notice | 2019-07-23T04:00:00Z | 2019 | 7 | 2019-07-23T04:00:00Z | 2019-07-26T12:38:21Z | 2019-15555 | 0 | 0 | 0900006483da9efa | |
| GSA-GSA-2018-0001-0052 | GSA | GSA Information Collections -2018 GSA-GSA-2018-0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: General Services Administration Regulation; Packing List Clause | Notice | 30 Day Proposed Information Collection | 2019-04-22T04:00:00Z | 2019 | 4 | 2019-04-22T04:00:00Z | 2019-05-23T03:59:59Z | 2019-04-29T16:40:19Z | 2019-08021 | 0 | 0 | 0900006483bdb216 |
| GSA-GSA-2018-0001-0051 | GSA | GSA Information Collections -2018 GSA-GSA-2018-0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Packing List Clause | Notice | 60 Day Proposed Information Collection | 2019-02-12T05:00:00Z | 2019 | 2 | 2019-02-12T05:00:00Z | 2019-04-16T03:59:59Z | 2019-04-01T14:04:02Z | 2019-02033 | 0 | 0 | 0900006483a65c7e |
| GSA-GSA-2018-0001-0050 | GSA | GSA Information Collections -2018 GSA-GSA-2018-0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Application/Permit for Use of Space in Public Buildings and Grounds | Notice | 30 Day Proposed Information Collection | 2019-02-08T05:00:00Z | 2019 | 2 | 2019-02-08T05:00:00Z | 2019-03-12T03:59:59Z | 2019-04-01T13:59:14Z | 2019-01689 | 0 | 0 | 0900006483a560f0 |
| GSA-GSA-2018-0001-0048 | GSA | GSA Information Collections -2018 GSA-GSA-2018-0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Federal Management Regulation; State Agency Monthly Donation Report of Surplus Property | Notice | 30 Day Proposed Information Collection | 2019-02-01T05:00:00Z | 2019 | 2 | 2019-02-01T05:00:00Z | 2019-03-05T04:59:59Z | 2019-02-22T19:19:00Z | 2019-00795 | 0 | 0 | 0900006483a32a83 |
| GSA-GSA-2018-0001-0049 | GSA | GSA Information Collections -2018 GSA-GSA-2018-0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals Transfer Order-Surplus Personal Property and Continuation Sheet | Notice | 30 Day Proposed Information Collection | 2019-02-01T05:00:00Z | 2019 | 2 | 2019-02-01T05:00:00Z | 2019-03-05T04:59:59Z | 2019-04-01T13:49:03Z | 2019-00794 | 0 | 0 | 0900006483a32b24 |
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;