documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "GSA_FRDOC_0001" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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_FRDOC_0001-1881 | GSA | Recently Posted GSA Rules and Notices. GSA_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Government Property | Notice | 2022-02-18T05:00:00Z | 2022 | 2 | 2022-02-18T05:00:00Z | 2022-04-20T03:59:59Z | 2022-02-18T12:47:52Z | 2022-03562 | 0 | 0 | 0900006484f858a5 | |
| GSA_FRDOC_0001-1878 | GSA | Recently Posted GSA Rules and Notices. GSA_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Travel Costs | Notice | 2022-02-18T05:00:00Z | 2022 | 2 | 2022-02-18T05:00:00Z | 2022-04-20T03:59:59Z | 2022-02-18T12:47:20Z | 2022-03563 | 0 | 0 | 0900006484f857e0 | |
| GSA_FRDOC_0001-1877 | GSA | Recently Posted GSA Rules and Notices. GSA_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Subcontract Consent and Contractors' Purchasing System Review | Notice | 2022-02-18T05:00:00Z | 2022 | 2 | 2022-02-18T05:00:00Z | 2022-03-22T03:59:59Z | 2022-02-18T12:46:54Z | 2022-03566 | 0 | 0 | 0900006484f85794 | |
| GSA_FRDOC_0001-1880 | GSA | Recently Posted GSA Rules and Notices. GSA_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Certain Federal Acquisition Regulation Part 9 Requirements | Notice | 2022-02-18T05:00:00Z | 2022 | 2 | 2022-02-18T05:00:00Z | 2022-03-22T03:59:59Z | 2022-02-18T12:47:41Z | 2022-03567 | 0 | 0 | 0900006484f8585c | |
| GSA_FRDOC_0001-1883 | GSA | Recently Posted GSA Rules and Notices. GSA_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Service Contracting | Notice | 2022-02-18T05:00:00Z | 2022 | 2 | 2022-02-18T05:00:00Z | 2022-04-20T03:59:59Z | 2022-02-18T12:48:19Z | 2022-03564 | 0 | 0 | 0900006484f87961 | |
| GSA_FRDOC_0001-1882 | GSA | Recently Posted GSA Rules and Notices. GSA_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Value Engineering Requirements | Notice | 2022-02-18T05:00:00Z | 2022 | 2 | 2022-02-18T05:00:00Z | 2022-04-20T03:59:59Z | 2022-02-18T12:48:00Z | 2022-03561 | 0 | 0 | 0900006484f858e6 |
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;