documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "SBA_FRDOC_0001" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-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_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_FRDOC_0001-0303 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Small Business HUBZone Program and Government Contracting Programs and Consolidation of Mentor Protege Programs | Proposed Rule | 2018-05-30T04:00:00Z | 2018 | 5 | 2018-05-30T04:00:00Z | 2018-05-30T11:56:28Z | 2018-11495 | 0 | 0 | 090000648330d284 | ||
| 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_FRDOC_0001-0299 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Meetings: Small Business HUBZone Program and Government Contracting Programs and Consolidation of Mentor Protege Programs and Other Government Contracting Amendments; Tribal Consultation | Proposed Rule | 2018-04-23T04:00:00Z | 2018 | 4 | 2018-04-23T04:00:00Z | 2018-04-23T12:30:54Z | 2018-08410 | 0 | 0 | 09000064831aa5a5 | ||
| 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;