documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "GSA_FRDOC_0001" and document_type = "Notice" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2373 | GSA | Recently Posted GSA Rules and Notices. GSA_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Examination of Records by Comptroller General and Contract Audit | Notice | Information Collection Request (ICR) | 2026-02-27T05:00:00Z | 2026 | 2 | 2026-02-27T19:23:52Z | 2026-03910 | 0 | 0 | 09000064b91e3238 | ||
| GSA_FRDOC_0001-2078 | GSA | Recently Posted GSA Rules and Notices. GSA_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Architect-Engineer Qualifications | Notice | 2023-11-14T05:00:00Z | 2023 | 11 | 2023-11-14T05:00:00Z | 2023-12-15T04:59:59Z | 2023-11-14T13:53:53Z | 2023-25031 | 0 | 0 | 090000648626df47 | |
| GSA_FRDOC_0001-2019 | GSA | Recently Posted GSA Rules and Notices. GSA_FRDOC_0001 | Equity Study on Remote Identity Proofing; Correction | Notice | 2023-03-31T04:00:00Z | 2023 | 3 | 2023-03-31T04:00:00Z | 2023-03-31T12:43:15Z | 2023-06711 | 0 | 0 | 09000064858a16d1 | ||
| 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 | |
| GSA_FRDOC_0001-1641 | GSA | Recently Posted GSA Rules and Notices. GSA_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Reporting Purchases from Sources Outside the United States | Notice | 2020-02-28T05:00:00Z | 2020 | 2 | 2020-02-28T05:00:00Z | 2020-03-31T03:59:59Z | 2020-02-28T12:47:35Z | 2020-04110 | 0 | 0 | 09000064843c50cf |
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;