documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "SBA", document_type = "Rule" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_date, posted_month, comment_start_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| SBA_FRDOC_0001-0312 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Maximum Allowable 7(a) Fixed Interest Rates | Rule | 2018-11-06T05:00:00Z | 2018 | 11 | 2018-11-06T05:00:00Z | 2018-11-06T12:54:38Z | 2018-24258 | 0 | 0 | 09000064838a208e | ||
| SBA-2018-0001-0070 | SBA | Ownership and Control of Service-Disabled Veteran-Owned Small Business Concerns SBA-2018-0001 | Ownership and Controlof Service-Disabled Veteran-Owned Small Business Concerns | Rule | 2018-09-28T04:00:00Z | 2018 | 9 | 2018-09-28T04:00:00Z | 2018-09-28T12:56:47Z | 2018-21112 | 0 | 0 | 090000648377f519 | ||
| SBA_FRDOC_0001-0308 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Small Business Size Regulations; CFR Correction | Rule | 2018-08-16T04:00:00Z | 2018 | 8 | 2018-08-16T04:00:00Z | 2018-08-16T12:13:47Z | 2018-17794 | 0 | 0 | 090000648362b787 | ||
| SBA_FRDOC_0001-0307 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | 504 Loan Program Rural Initiative: Waiver of Limitation on Lending Authority | Rule | 2018-07-19T04:00:00Z | 2018 | 7 | 2018-07-19T04:00:00Z | 2018-07-19T11:59:16Z | 2018-15312 | 0 | 0 | 090000648351f997 | ||
| SBA_FRDOC_0001-0304 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Class Waiver of the Nonmanufacturer Rule | Rule | 2018-05-31T04:00:00Z | 2018 | 5 | 2018-05-31T04:00:00Z | 2018-05-31T12:03:03Z | 2018-11658 | 0 | 0 | 0900006483315e99 | ||
| SBA-2016-0006-0052 | SBA | Debt Refinancing in the 504 Loan Program SBA-2016-0006 | Debt Refinancing in 504 Loan Program | Rule | 2018-05-07T04:00:00Z | 2018 | 5 | 2018-05-07T04:00:00Z | 2018-05-09T13:33:35Z | 2018-09638 | 0 | 0 | 09000064832360d2 | ||
| SBA_FRDOC_0001-0301 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Express Bridge Loan Pilot Program: Modification of Fee Policy | Rule | 2018-05-07T04:00:00Z | 2018 | 5 | 2018-05-07T04:00:00Z | 2018-05-07T11:53:11Z | 2018-09627 | 0 | 0 | 090000648323608b | ||
| SBA-2017-0007-0014 | SBA | Rules of Practice for Protests and Appeals Regarding Eligibility for Inclusion in the U.S. Department of Veterans Affairs, Center for Verification and Evaluation Database SBA-2017-0007 | Rules of Practice for Protests and Appeals Regarding Eligibility for Inclusion in the U.S. Department of Veterans Affairs Center for Verification and Evaluation Database | Rule | 2018-03-30T04:00:00Z | 2018 | 3 | 2018-03-30T04:00:00Z | 2018-04-27T14:00:25Z | 2018-06034 | 0 | 0 | 0900006483073f13 | ||
| SBA-2018-0003-0001 | SBA | Conforming Statutory Amendments and Technical Corrections to Small Business Government Contracting Regulations SBA-2018-0003 | Conforming Statutory Amendments and Technical Corrections to Small Business Government Contracting Regulations | Rule | 2018-03-26T04:00:00Z | 2018 | 3 | 2018-03-26T04:00:00Z | 2018-04-26T03:59:59Z | 2018-04-26T01:03:31Z | 2018-06033 | 0 | 0 | 090000648304d9ec | |
| SBA_FRDOC_0001-0295 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Civil Monetary Penalties Inflation Adjustments | Rule | 2018-02-21T05:00:00Z | 2018 | 2 | 2018-02-21T05:00:00Z | 2018-02-21T13:39:00Z | 2018-03490 | 0 | 0 | 0900006482f4cb7f |
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;