documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "FAR", 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_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FAR-2021-0015-0037 | FAR | Federal Acquisition Regulation: Disclosure of Greenhouse Gas Emissions and Climate-Related Financial Risk (FAR Case 2021-015) FAR-2021-0015 | Federal Acquisition Regulation: Disclosure of Greenhouse Gas Emissions and Climate-Related Financial Risk | Proposed Rule | Extension of Comment Period | 2022-12-23T05:00:00Z | 2022 | 12 | 2022-12-23T05:00:00Z | 2023-02-14T04:59:59Z | 2023-02-17T02:00:32Z | 2022-27884 | 0 | 0 | 0900006485550cf0 |
| FAR-2021-0012-0001 | FAR | FAR Case 2021-012, Federal Acquisition Regulation: 8(a) Program; Proposed Rule FAR-2021-0012 | Federal Acquisition Regulation: 8(a) Program | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2022-12-15T05:00:00Z | 2022 | 12 | 2022-12-15T05:00:00Z | 2023-02-14T04:59:59Z | 2023-02-11T02:00:23Z | 2022-26978 | 0 | 0 | 0900006485538495 |
| FAR-2021-0015-0001 | FAR | Federal Acquisition Regulation: Disclosure of Greenhouse Gas Emissions and Climate-Related Financial Risk (FAR Case 2021-015) FAR-2021-0015 | Federal Acquisition Regulation: Disclosure of Greenhouse Gas Emissions and Climate-Related Financial Risk | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2022-11-14T05:00:00Z | 2022 | 11 | 2022-11-14T05:00:00Z | 2023-01-14T04:59:59Z | 2023-01-18T02:00:46Z | 2022-24569 | 0 | 0 | 09000064854aa9ff |
| FAR-2022-0002-0001 | FAR | FAR Case 2022-002: Federal Acquisition Regulation (FAR); Exemption of Certain Contracts from the Periodic Inflation Adjustments to the Acquisition-Related Thresholds FAR-2022-0002 | Federal Acquisition Regulation: Exemption of Certain Contracts from the Periodic Inflation Adjustments to the Acquisition-Related Thresholds | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2022-09-26T04:00:00Z | 2022 | 9 | 2022-09-26T04:00:00Z | 2022-11-26T04:59:59Z | 2022-11-24T02:00:38Z | 2022-20766 | 0 | 0 | 090000648536cee8 |
| FAR-2022-0004-0001 | FAR | FAR Case 2022-007, Removal of FAR Subpart 8.5, Acquisition of Helium FAR-2022-0004 | Federal Acquisition Regulation: Removal of Acquisition of Helium Subpart | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2022-09-19T04:00:00Z | 2022 | 9 | 2022-09-19T04:00:00Z | 2022-11-19T04:59:59Z | 2022-09-23T14:55:40Z | 2022-19642 | 0 | 0 | 0900006485327f6d |
| FAR-2022-0003-0001 | FAR | Federal Acquisition Regulation: Use of Project Labor Agreements for Federal Construction Projects (FAR Case 2022-003) FAR-2022-0003 | Acquisition Regulation: Use of Project Labor Agreements for Federal Construction Projects | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2022-08-19T04:00:00Z | 2022 | 8 | 2022-08-19T04:00:00Z | 2022-10-19T03:59:59Z | 2022-10-20T01:00:44Z | 2022-17067 | 0 | 0 | 0900006485253ad3 |
| FAR-2019-0008-0001 | FAR | Small Business Program Amendments; (FAR Case 2019-008) Proposed FAR-2019-0008 | Acquisition Regulation: Small Business Program Amendments | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2022-02-24T05:00:00Z | 2022 | 2 | 2022-02-24T05:00:00Z | 2022-04-26T03:59:59Z | 2022-04-26T01:00:55Z | 2022-03105 | 0 | 0 | 0900006484f9f640 |
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;