documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "SBA", document_type = "Proposed Rule" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| SBA-2021-0020-0001 | SBA | Past Performance for Small Business Joint Venture Members and Small Business First-Tier Subcontractors SBA-2021-0020 | Past Performance Ratings for Small Business Joint Venture Members and Small Business First-Tier Subcontractors | Proposed Rule | 2021-11-18T05:00:00Z | 2021 | 11 | 2021-11-18T05:00:00Z | 2022-01-19T04:59:59Z | 2022-03-03T02:00:45Z | 2021-25002 | 0 | 0 | 0900006484e5fd06 | |
| SBA-2021-0021-0001 | SBA | Small Business Size Standards: Calculation of Number of Employees for All Programs and of Average Annual Receipts in the Business Loan, Disaster Loan, and Small Business Investment Company Programs SBA-2021-0021 | Small Business Size Standards: Calculation of Number of Employees for All Programs and of Average Annual Receipts in the Business Loan, Disaster Loan, and Small Business Investment Company Programs | Proposed Rule | 2021-11-02T04:00:00Z | 2021 | 11 | 2021-11-02T04:00:00Z | 2021-12-03T04:59:59Z | 2022-04-14T01:00:38Z | 2021-23439 | 0 | 0 | 0900006484e06418 | |
| SBA-2021-0018-0001 | SBA | Regulatory Reform Initiative: Streamlining Surety Bond Guarantee Program SBA-2021-0018 | Regulatory Reform Program: Streamlining Surety Bond Guarantee Program | Proposed Rule | 2021-09-23T04:00:00Z | 2021 | 9 | 2021-09-23T04:00:00Z | 2021-11-23T04:59:59Z | 2021-11-23T02:00:49Z | 2021-20401 | 0 | 0 | 0900006484d9fff0 | |
| SBA-2021-0014-0001 | SBA | Small Business Size Standards: Wholesale Trade; Retail Trade SBA-2021-0014 | Small Business Size Standards: Wholesale Trade; Retail Trade | Proposed Rule | 2021-05-25T04:00:00Z | 2021 | 5 | 2021-05-25T04:00:00Z | 2021-07-27T03:59:59Z | 2021-07-27T01:00:32Z | 2021-10487 | 0 | 0 | 0900006484b334a3 | |
| SBA-2021-0007-0001 | SBA | Ensuring Equal Treatment for Faith Based Organizations in SBA’s Loan and Disaster Assistance Programs SBA-2021-0007 | Ensuring Equal Treatment for Faith-Based Organizations in SBA's Loan and Disaster Assistance Programs | Proposed Rule | 2021-01-19T05:00:00Z | 2021 | 1 | 2021-01-19T05:00:00Z | 2021-02-19T04:59:59Z | 2021-02-19T02:00:47Z | 2021-00446 | 0 | 0 | 09000064849f85fb |
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;