documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "SBA", document_type = "Notice" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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-2020-0045-0001 | SBA | Small Business Innovation Research Program and Small Business Technology Transfer Program Policy Directive SBA-2020-0045 | Small Business Innovation Research Program and Small Business Technology Transfer Program Policy Directive | Notice | 2020-08-17T04:00:00Z | 2020 | 8 | 2020-08-17T04:00:00Z | 2020-09-17T03:59:59Z | 2020-09-05T01:02:08Z | 0 | 0 | 0900006484809fa7 | ||
| SBA-2020-0043-0001 | SBA | Class Waiver of Nonmanufacturer Rule SBA-2020-0043 | Notice of intent to waive the Nonmanufacturer Rule for surgical beds under North American Industry Classification (NAICS) code 339113 and Product Service Code (PSC) 6515 | Notice | 2020-08-11T04:00:00Z | 2020 | 8 | 2020-08-11T04:00:00Z | 2020-09-11T03:59:59Z | 2020-10-21T16:25:12Z | 0 | 0 | 09000064847f101e | ||
| SBA-2020-0041-0001 | SBA | Community Advantage Pilot Program Temporary Changes - Community Advantage Recovery Loans SBA-2020-0041 | Community Advantage Pilot Program Temporary Changes-Community Advantage Recovery Loans | Notice | 2020-07-15T04:00:00Z | 2020 | 7 | 2020-07-15T04:00:00Z | 2020-08-15T03:59:59Z | 2020-08-16T01:00:51Z | 2020-14852 | 0 | 0 | 090000648476c6fa | |
| SBA-2020-0006-0001 | SBA | Community Advantage Pilot Program SBA-2020-0006 | Community Advantage notice | Notice | 2020-03-02T05:00:00Z | 2020 | 3 | 2020-03-02T05:00:00Z | 2020-04-02T03:59:59Z | 2020-04-03T01:01:21Z | 0 | 0 | 09000064843cf394 | ||
| SBA-2020-0005-0001 | SBA | Class waiver of the Nonmanufacturer Rule SBA-2020-0005 | Nonmanufacturer waiver--leather holsters | Notice | 2020-01-23T05:00:00Z | 2020 | 1 | 2020-01-23T05:00:00Z | 2020-02-25T04:59:59Z | 2020-01-23T12:26:24Z | 0 | 0 | 09000064842ddbdf | ||
| SBA-2020-0004-0001 | SBA | Class Waiver of the Nonmanufacturer Rule SBA-2020-0004 | Nonmanufacturer waiver--recreational and gymnastic equipment | Notice | 2020-01-22T05:00:00Z | 2020 | 1 | 2020-01-22T05:00:00Z | 2020-02-19T04:59:59Z | 2020-02-19T02:02:33Z | 0 | 0 | 09000064842d43ee | ||
| SBA-2020-0003-0001 | SBA | Class Waiver of the Nonmanufacturer Rule SBA-2020-0003 | Nonmanufacturer waiver--commercially handheld land mobile radios | Notice | 2020-01-22T05:00:00Z | 2020 | 1 | 2020-01-22T05:00:00Z | 2020-02-22T04:59:59Z | 2020-02-21T02:01:32Z | 0 | 0 | 09000064842d465a |
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;