documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "SBA", document_type = "Rule" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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-2010-0001-1001 | SBA | Women-Owned Small Business Federal Contract Program SBA-2010-0001 | Women-Owned Small Business Federal Contract Program | Rule | 2010-10-07T04:00:00Z | 2010 | 10 | 2010-10-07T04:00:00Z | 2011-06-11T17:57:45Z | 2010-25179 | 0 | 0 | 0900006480b69d45 | ||
| SBA-2009-0016-0010 | SBA | Small Business Size Standards: Accommodation and Food Services Industries SBA-2009-0016 | Small Business Size Standards: Accommodation and Food Services Industries | Rule | 2010-10-06T04:00:00Z | 2010 | 10 | 2010-10-06T04:00:00Z | 2011-06-11T17:57:42Z | 2010-24857 | 0 | 0 | 0900006480b69210 | ||
| SBA-2009-0017-0007 | SBA | Small Business Size Standards: Other Services Industries SBA-2009-0017 | Small Business Size Standards: Other Services | Rule | 2010-10-06T04:00:00Z | 2010 | 10 | 2010-10-06T04:00:00Z | 2011-06-11T17:57:42Z | 2010-24860 | 0 | 0 | 0900006480b69285 | ||
| SBA-2009-0018-0008 | SBA | Small Business Size Standard: Retail Trade SBA-2009-0018 | Small Business Size Standards: Retail Trade | Rule | 2010-10-06T04:00:00Z | 2010 | 10 | 2010-10-06T04:00:00Z | 2011-06-11T17:57:43Z | 2010-24855 | 0 | 0 | 0900006480b69262 | ||
| SBA-2010-0010-0001 | SBA | Immediate Disaster Assistance Program SBA-2010-0010 | Immediate Disaster Assistance Program | Rule | 2010-10-01T04:00:00Z | 2010 | 10 | 2010-10-01T04:00:00Z | 2010-12-01T04:59:59Z | 2011-06-11T17:57:47Z | 2010-24189 | 0 | 0 | 0900006480b65103 | |
| SBA-2010-0012-0001 | SBA | Surety Bond Guarantee Program; Size Standards SBA-2010-0012 | Surety Bond Guarantee Program: Size Standards | Rule | 2010-08-11T04:00:00Z | 2010 | 8 | 2010-08-11T04:00:00Z | 2010-09-11T03:59:59Z | 2011-06-11T17:57:47Z | 2010-19741 | 0 | 0 | 0900006480b2dfb2 | |
| SBA-2010-0011-0001 | SBA | Rules of Procedure Governing Cases Before the Office of Hearings and Appeals SBA-2010-0011 | Rules of Procedure Governing Cases Before Office of Hearings and Appeals | Rule | 2010-08-06T04:00:00Z | 2010 | 8 | 2010-08-06T04:00:00Z | 2010-09-08T03:59:59Z | 2011-06-11T17:57:47Z | 2010-19401 | 0 | 0 | 0900006480b2ac5c | |
| SBA_FRDOC_0001-0100 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Disaster Assistance Loan Program | Rule | 2010-03-25T04:00:00Z | 2010 | 3 | 2010-03-25T04:00:00Z | 2010-04-27T03:59:59Z | 2011-06-11T17:58:37Z | 2010-06430 | 0 | 0 | 0900006480ac9667 | |
| SBA-2010-0002-0001 | SBA | Disaster Home Loans: FEMA Interaction SBA-2010-0002 | Disaster Home Loans: FEMA Interaction | Rule | 2010-02-22T05:00:00Z | 2010 | 2 | 2010-02-22T05:00:00Z | 2010-03-25T03:59:59Z | 2011-06-11T17:57:45Z | 2010-03395 | 0 | 0 | 0900006480aa9b3d |
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;