documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "SBA", document_type = "Proposed 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-2006-0246-0001 | SBA | Business Loan Program; Lender Examination and Review Fees SBA-2006-0246 | Business Loan Program; Lender Examination and Review Fees | Proposed Rule | 2006-10-10T04:00:00Z | 2006 | 10 | 2006-10-10T04:00:00Z | 2006-11-10T04:59:59Z | 2011-06-11T17:57:30Z | E6-16750 | 0 | 0 | 09000064801d35d9 | |
| SBA-2006-0234-0001 | SBA | Surety Bond Guarantee Program--Preferred Surety Bond Surety Qualification, Increased Guarantee for Veteran and Service-Disabled Veteran-Owned Business, Deadline for Payment of Guarantee Fees, Denial of Liability, and Technical Amendments SBA-2006-0234 | Surety Bond Guarantee Program--Preferred Surety Bond Surety Qualification, Increased Guarantee for Veteran and Service-Disabled Veteran-Owned Business, Deadline for Payment of Guarantee Fees, Denial of Liability, and Technical Amendments | Proposed Rule | 2006-09-26T04:00:00Z | 2006 | 9 | 2006-09-26T04:00:00Z | 2006-10-27T03:59:59Z | 2011-06-11T17:57:29Z | 06-08205 | 0 | 0 | 09000064801ce902 | |
| SBA-2006-0209-0001 | SBA | Business Loan Program; Lender Examination and Review Fees SBA-2006-0209 | Business Loan Program; Lender Examination and Review Fees | Proposed Rule | 2006-09-05T04:00:00Z | 2006 | 9 | 2006-09-05T04:00:00Z | 2006-10-06T03:59:59Z | 2011-06-11T17:57:29Z | 06-07399 | 0 | 0 | 09000064801c7b0d | |
| SBA-2006-0128-0001 | SBA | The Women-Owned Small Business Federal Contract Assistance Program SBA-2006-0128 | The Women-Owned Small Business Federal Contract Assistance Program | Proposed Rule | 2006-06-15T04:00:00Z | 2006 | 6 | 2006-06-15T04:00:00Z | 2006-07-18T03:59:59Z | 2011-06-11T17:57:29Z | 06-05354 | 0 | 0 | 0900006480188cd1 | |
| SBA-2006-0113-0001 | SBA | Business Loan Programs; Premier Certified Lenders Program Alternative Loan Loss Reserve Pilot Program SBA-2006-0113 | Business Loan Programs; Premier Certified Lenders Program Alternative Loan Loss Reserve Pilot Program | Proposed Rule | 2006-05-26T04:00:00Z | 2006 | 5 | 2006-05-26T04:00:00Z | 2006-07-26T03:59:59Z | 2011-06-11T17:57:28Z | E6-08039 | 0 | 0 | 090000648017b496 | |
| SBA-2006-0106-0001 | SBA | Small Business Size Standards; Air Traffic Control, Other Airport Operations, and Other Support Activities for Air Transportation SBA-2006-0106 | Small Business Size Standards; Air Traffic Control, Other Airport Operations, and Other Support Activities for Air Transportation | Proposed Rule | 2006-05-17T04:00:00Z | 2006 | 5 | 2006-05-17T04:00:00Z | 2006-06-17T03:59:59Z | 2011-06-11T17:57:28Z | 06-04619 | 0 | 0 | 09000064801742ad | |
| SBA-2006-0090-0001 | SBA | Semi-annual agenda SBA-2006-0090 | Semi-annual agenda | Proposed Rule | 2006-04-24T04:00:00Z | 2006 | 4 | 2006-04-24T04:00:00Z | 2007-06-11T15:01:26Z | 06-02949 | 0 | 0 | 0900006480163bc1 | ||
| SBA-2006-0020-0001 | SBA | Business Loans and Development Company Loans; Liquidation and Litigation Procedures SBA-2006-0020 | Business Loans and Development Company Loans; Liquidation and Litigation Procedures | Proposed Rule | 2006-01-25T05:00:00Z | 2006 | 1 | 2006-01-25T05:00:00Z | 2006-02-25T04:59:59Z | 2011-06-11T17:57:27Z | E6-00881 | 0 | 0 | 090000648011c0b5 |
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;