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 = 2006 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, last_modified, 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-2007-0002-0001 | SBA | Disaster Relief to Small Business Concerns Damaged by Drought SBA-2007-0002 | Disaster Relief to Small Business Concerns Damaged by Drought | Rule | 2006-12-15T05:00:00Z | 2006 | 12 | 2006-12-15T05:00:00Z | 2007-01-17T04:59:59Z | 2011-06-11T17:57:31Z | E6-21365 | 0 | 0 | 09000064801ec6ce | |
| SBA_FRDOC_0001-0007 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Small Business Size Regulations, HUBZone Program; Correction | Rule | 2006-11-30T05:00:00Z | 2006 | 11 | 2006-11-30T05:00:00Z | 2011-06-11T17:58:39Z | E6-20268 | 0 | 0 | 09000064801e6e39 | ||
| SBA-2006-0279-0001 | SBA | Small Business Size Regulations; Size for Purposes of Government- Wide Acquisition Contracts, Multiple Award Schedule Contracts and Other Long-Term Contracts; 8(a) Business Development/Small Disadvantaged Business; Business Status Determinations SBA-2006-0279 | Small Business Size Regulations; Size for Purposes of Government- Wide Acquisition Contracts, Multiple Award Schedule Contracts and Other Long-Term Contracts; 8(a) Business Development/Small Disadvantaged Business; Business Status Determinations | Rule | 2006-11-15T05:00:00Z | 2006 | 11 | 2006-11-15T05:00:00Z | 2011-06-11T17:57:31Z | E6-19253 | 0 | 0 | 09000064801e1e29 | ||
| SBA-2006-0273-0001 | SBA | Administration and Disaster Loan Program SBA-2006-0273 | Administration and Disaster Loan Program | Rule | 2006-11-09T05:00:00Z | 2006 | 11 | 2006-11-09T05:00:00Z | 2011-06-11T17:57:30Z | E6-18712 | 0 | 0 | 09000064801df696 | ||
| SBA-2006-0263-0001 | SBA | Administration and Disaster Loan Program SBA-2006-0263 | Administration and Disaster Loan Program | Rule | 2006-10-31T05:00:00Z | 2006 | 10 | 2006-10-31T05:00:00Z | 2011-06-11T17:57:30Z | E6-18246 | 0 | 0 | 09000064801db9e7 | ||
| SBA-2005-0100-0002 | SBA | Small Business Size Standards, Inflation Adjustment to Size Standards; Business Loan Program; Disaster Assistance Loan Program SBA-2005-0100 | Small Business Size Standards, Inflation Adjustment to Size Standards; Business Loan Program; Disaster Assistance Loan Program | Rule | 2006-10-27T04:00:00Z | 2006 | 10 | 2006-10-27T04:00:00Z | 2006-12-22T16:30:36Z | C5-23435 | 0 | 0 | 09000064801da410 | ||
| SBA-2006-0253-0001 | SBA | Small business size standards: Surety Bond Guarantee Program SBA-2006-0253 | Small business size standards: Surety Bond Guarantee Program | Rule | 2006-10-24T04:00:00Z | 2006 | 10 | 2006-10-24T04:00:00Z | 2006-12-22T16:48:36Z | E6-17682 | 0 | 0 | 09000064801d8ebe | ||
| SBA-2006-0236-0001 | SBA | Gulf Opportunity Pilot Loan Program (GO Loan Pilot) SBA-2006-0236 | Gulf Opportunity Pilot Loan Program (GO Loan Pilot) | Rule | 2006-09-29T04:00:00Z | 2006 | 9 | 2006-09-29T04:00:00Z | 2006-12-22T16:43:29Z | E6-15993 | 0 | 0 | 09000064801cfe51 | ||
| SBA-2006-0144-0001 | SBA | Small Business Size Standards; Security Guards and Patrol Services Industry SBA-2006-0144 | Small Business Size Standards; Security Guards and Patrol Services Industry | Rule | 2006-06-30T04:00:00Z | 2006 | 6 | 2006-06-30T04:00:00Z | 2011-06-11T17:57:29Z | 06-05894 | 0 | 0 | 09000064801937d8 | ||
| SBA-2006-0085-0001 | SBA | Small Business Size Standards; Correction SBA-2006-0085 | Small Business Size Standards; Correction | Rule | 2006-04-18T04:00:00Z | 2006 | 4 | 2006-04-18T04:00:00Z | 2011-06-11T17:57:28Z | 06-03672 | 0 | 0 | 090000648015f822 |
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;