documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "SBA_FRDOC_0001" and posted_year = 2025 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, posted_date (date), comment_start_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-0512 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Tribal Consultation for Office of Manufacturing and Trade and Other Small Business Programs and Services Offered by the Agency, with a Focus on Ongoing Manufacturing, Onshoring and Export Initiatives to Encourage Small Businesses Going Global | Proposed Rule | 2025-09-29T04:00:00Z | 2025 | 9 | 2025-09-29T04:00:00Z | 2025-09-29T17:00:56Z | 2025-18807 | 0 | 0 | 09000064b8fe429e | ||
| SBA_FRDOC_0001-0510 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Hearings, Meetings, Proceedings, etc.: Access to All Agency Financial Assistance, Contracting, Business Counseling and Technical Assistance Programs, Identifying Issues and Best Practices; Tribal Consultation | Proposed Rule | 2025-08-18T04:00:00Z | 2025 | 8 | 2025-08-18T04:00:00Z | 2025-08-18T16:20:24Z | 2025-15704 | 0 | 0 | 09000064b8f049ce | ||
| SBA_FRDOC_0001-0508 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | HUBZone Program Updates and Clarifications, and Clarifications to Other Small Business Programs; Correction | Rule | 2025-06-04T00:00:00Z | 2025 | 6 | 2025-06-04T00:00:00Z | 2025-06-04T16:08:27Z | 2025-10156 | 0 | 0 | 09000064b8dd7ac0 | ||
| SBA_FRDOC_0001-0507 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Civil Monetary Penalty Inflation Adjustment | Rule | 2025-06-03T00:00:00Z | 2025 | 6 | 2025-06-03T00:00:00Z | 2025-06-03T16:31:49Z | 2025-09833 | 0 | 0 | 09000064b8dd3fb8 | ||
| SBA_FRDOC_0001-0506 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Hearings, Meetings, Proceedings, etc.: Tribal Consultation for 8(a) Business Development Program and Mentor-Protege Program Issues and Best Practices | Proposed Rule | 2025-05-12T00:00:00Z | 2025 | 5 | 2025-05-12T00:00:00Z | 2025-05-21T22:33:18Z | 2025-08294 | 0 | 0 | 09000064b8d3d2ad | ||
| SBA_FRDOC_0001-0505 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | HUBZone Program Updates and Clarifications, and Clarifications to Other Small Business Programs; Correction | Rule | 2025-02-18T05:00:00Z | 2025 | 2 | 2025-02-18T05:00:00Z | 2025-02-18T13:16:14Z | 2025-02741 | 0 | 0 | 0900006486968946 |
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;