documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "SBA_FRDOC_0001" and posted_year = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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_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_FRDOC_0001-0018 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Small Business Administration Implementation of OMB Guidance on Nonprocurement Debarment and Suspension | Rule | 2007-07-20T04:00:00Z | 2007 | 7 | 2007-07-20T04:00:00Z | 2011-06-11T17:58:39Z | E7-14035 | 0 | 0 | 090000648026be23 | ||
| SBA_FRDOC_0001-0017 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Surety Bond Guarantee Program-Preferred Surety Qualification, Increased Guarantee for Veteran and Service-Disabled Veteran-Owned Business, Deadline for Payment of Guarantee Fees, Denial of Liability, and Technical Amendments | Rule | 2007-06-25T04:00:00Z | 2007 | 6 | 2007-06-25T04:00:00Z | 2011-06-11T17:58:39Z | 07-02983 | 0 | 0 | 0900006480258c4d | ||
| SBA_FRDOC_0001-0016 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Business Loan Program; Lender Examination and Review Fees | Rule | 2007-05-04T04:00:00Z | 2007 | 5 | 2007-05-04T04:00:00Z | 2011-06-11T17:58:38Z | E7-08516 | 0 | 0 | 09000064802352fe | ||
| 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-0014 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Liquidation and Debt Collection Activities | Rule | 2007-04-12T04:00:00Z | 2007 | 4 | 2007-04-12T04:00:00Z | 2011-06-11T17:58:40Z | E7-06946 | 0 | 0 | 0900006480224952 | ||
| SBA_FRDOC_0001-0012 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Disaster Relief to Small Business Concerns Damaged by Drought | Rule | 2007-02-07T05:00:00Z | 2007 | 2 | 2007-02-07T05:00:00Z | 2007-03-10T04:59:59Z | 2011-06-11T17:58:38Z | E7-01972 | 0 | 0 | 09000064801fc64b | |
| 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;