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 = "Proposed Rule" and posted_year = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_date, posted_month, comment_start_date, last_modified, withdrawn, 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-2008-0001-0001 | SBA | Women-Owned Small Business Federal Contract Assistance Procedures SBA-2008-0001 | Women-Owned Small Business Federal Contract Assistance Procedures | Proposed Rule | 2007-12-27T05:00:00Z | 2007 | 12 | 2007-12-27T05:00:00Z | 2008-02-26T04:59:59Z | 2011-06-11T17:57:35Z | E7-25056 | 0 | 0 | 090000648037edf3 | |
| SBA-2007-0009-0002 | SBA | Lender Oversight Program SBA-2007-0009 | SBA Lender Oversight Program | Proposed Rule | 2007-12-20T05:00:00Z | 2007 | 12 | 2007-12-20T05:00:00Z | 2008-03-01T04:59:59Z | 2011-06-11T17:57:34Z | E7-24381 | 0 | 0 | 090000648037cd2c | |
| SBA-2007-0008-0001 | SBA | Small Business Size Standards; Fuel Oil Dealers SBA-2007-0008 | Small Business Size Standards; Fuel Oil Dealers Industries | Proposed Rule | 2007-10-31T04:00:00Z | 2007 | 10 | 2007-10-31T04:00:00Z | 2007-12-01T04:59:59Z | 2014-01-18T17:26:47Z | E7-21401 | 0 | 0 | 090000648035bb33 | |
| SBA-2007-0009-0001 | SBA | Lender Oversight Program SBA-2007-0009 | Lender Oversight Program | Proposed Rule | 2007-10-31T04:00:00Z | 2007 | 10 | 2007-10-31T04:00:00Z | 2008-01-01T04:59:59Z | 2011-06-11T17:57:34Z | E7-20932 | 0 | 0 | 090000648035baae | |
| SBA_FRDOC_0001-0023 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | 8(a) Business Development Program Regulation Changes; Tribal Consultation | Proposed Rule | 2007-10-11T04:00:00Z | 2007 | 10 | 2007-10-11T04:00:00Z | 2007-10-11T11:18:17Z | E7-19962 | 0 | 0 | 09000064802feb26 | ||
| SBA-2007-0006-0001 | SBA | Small Business Size Standards: Adoption of 2007 North American industry Classifictaion System for Size Standards SBA-2007-0006 | Small Business Size Standards; Adoption of 2007 North American Industry Classification System for Size Standards | Proposed Rule | 2007-08-29T04:00:00Z | 2007 | 8 | 2007-08-29T04:00:00Z | 2007-09-29T03:59:59Z | 2014-01-17T20:37:56Z | E7-17150 | 0 | 0 | 090000648027c048 | |
| SBA-2007-0004-0001 | SBA | Small Business Size Standards; Calculation of Number of Employees SBA-2007-0004 | Small Business Size Stadards; Calculation of Number of Employees | Proposed Rule | 2007-07-27T04:00:00Z | 2007 | 7 | 2007-07-27T04:00:00Z | 2007-09-26T03:59:59Z | 2014-01-18T17:23:14Z | RIN 3245-AF60 | 0 | 0 | 090000648026ed2e | |
| SBA-2007-0004-0007 | SBA | Small Business Size Standards; Calculation of Number of Employees SBA-2007-0004 | Small Business Size Standards; Calculation of the Number of Employees | Proposed Rule | 2007-07-27T00:00:00Z | 2007 | 7 | 2014-01-18T17:23:14Z | 0 | 1 | 090000648026eab9 | ||||
| SBA_FRDOC_0001-0015 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Semi-annual agenda | Proposed Rule | 2007-04-30T04:00:00Z | 2007 | 4 | 2007-04-30T04:00:00Z | 2007-06-06T19:58:34Z | 07-01295 | 0 | 0 | 0900006480231b47 | ||
| SBA_FRDOC_0001-0011 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | HUBZone and Government Contracting | Proposed Rule | 2007-01-26T05:00:00Z | 2007 | 1 | 2007-01-26T05:00:00Z | 2007-02-27T04:59:59Z | 2011-06-11T17:58:40Z | E7-01284 | 0 | 0 | 09000064801f7ab6 |
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;