documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "SBA_FRDOC_0001" and posted_year = 2022 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_FRDOC_0001-0435 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Small Business Size Standards: Adoption of 2022 North American Industry Classification System for Size Standards | Rule | 2022-09-29T04:00:00Z | 2022 | 9 | 2022-09-29T04:00:00Z | 2022-09-29T11:47:00Z | 2022-20513 | 0 | 0 | 0900006485380a49 | ||
| SBA_FRDOC_0001-0432 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Regulatory Reform Initiative: Streamlining Surety Bond Guarantee Program | Rule | 2022-08-08T04:00:00Z | 2022 | 8 | 2022-08-08T04:00:00Z | 2022-08-08T11:52:36Z | 2022-16875 | 0 | 0 | 0900006485220c1a | ||
| SBA_FRDOC_0001-0431 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Maximum Allowable 7(a) Fixed Interest Rates | Rule | 2022-08-01T04:00:00Z | 2022 | 8 | 2022-08-01T04:00:00Z | 2022-08-01T12:01:58Z | 2022-16162 | 0 | 0 | 09000064851ffb71 | ||
| SBA_FRDOC_0001-0430 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Past Performance Ratings for Small Business Joint Venture Members and Small Business First-Tier Subcontractors | Rule | 2022-07-22T04:00:00Z | 2022 | 7 | 2022-07-22T04:00:00Z | 2022-07-22T12:37:19Z | 2022-15622 | 0 | 0 | 09000064851e1e02 | ||
| SBA_FRDOC_0001-0427 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Regulatory Reform Initiative: Streamlining and Modernizing the 7(a), Microloan, and 504 Loan Programs to Reduce Unnecessary Regulatory Burden | Rule | 2022-06-30T04:00:00Z | 2022 | 6 | 2022-06-30T04:00:00Z | 2022-06-30T12:17:41Z | 2022-13483 | 0 | 0 | 09000064851abd93 | ||
| SBA_FRDOC_0001-0425 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Small Business Size Standards: Wholesale Trade and Retail Trade | Rule | 2022-06-14T04:00:00Z | 2022 | 6 | 2022-06-14T04:00:00Z | 2022-06-14T12:15:40Z | 2022-12512 | 0 | 0 | 090000648516212e | ||
| SBA_FRDOC_0001-0424 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | 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 | Rule | 2022-06-06T04:00:00Z | 2022 | 6 | 2022-06-06T04:00:00Z | 2022-06-06T12:21:56Z | 2022-12131 | 0 | 0 | 09000064851404d5 | ||
| SBA_FRDOC_0001-0423 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Civil Monetary Penalty Inflation Adjustment | Rule | 2022-05-11T04:00:00Z | 2022 | 5 | 2022-05-11T04:00:00Z | 2022-05-11T12:11:43Z | 2022-10080 | 0 | 0 | 090000648506ef0d | ||
| SBA_FRDOC_0001-0422 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Community Advantage PilotProgram | Rule | 2022-04-29T04:00:00Z | 2022 | 4 | 2022-04-29T04:00:00Z | 2022-06-01T03:59:59Z | 2022-06-01T01:00:30Z | 2022-09162 | 0 | 0 | 090000648504282c |
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;