documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where agency_id = "SBA", document_type = "Proposed Rule" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2017-0005-0181 | SBA | Reducing Unnecessary Regulatory Burden SBA-2017-0005 | Reducing Unnecessary Regulatory Burden | Proposed Rule | 2017-10-13T04:00:00Z | 2017 | 10 | 2017-10-13T04:00:00Z | 2017-11-16T04:59:59Z | 2017-11-21T15:49:07Z | 2017-22130 | 0 | 0 | 0900006482bc6a17 | |
| SBA-2017-0007-0001 | SBA | Rules of Practice for Protests and Appeals Regarding Eligibility for Inclusion in the U.S. Department of Veterans Affairs, Center for Verification and Evaluation Database SBA-2017-0007 | Rules of Practice for Protests and Appeals Regarding Eligibility for Inclusion in U.S. Department of Veterans Affairs, Center for Verification and Evaluation Database | Proposed Rule | 2017-09-28T04:00:00Z | 2017 | 9 | 2017-09-28T04:00:00Z | 2017-10-31T03:59:59Z | 2017-10-31T01:02:06Z | 2017-20384 | 0 | 0 | 0900006482b86e55 | |
| SBA_FRDOC_0001-0284 | SBA | Recently Posted SBA Rules and Notices. SBA_FRDOC_0001 | Requests for Information: Reducing Unnecessary Regulatory Burden | Proposed Rule | 2017-08-15T04:00:00Z | 2017 | 8 | 2017-08-15T04:00:00Z | 2017-10-17T03:59:59Z | 2017-10-17T01:00:50Z | 2017-17176 | 0 | 0 | 0900006482a2f200 | |
| SBA-2017-0003-0001 | SBA | Small Business Size Standards: Adoption of 2017 North American Industry Classification Systems for Size Standards SBA-2017-0003 | Small Business Size Standards: Adoption of 2017 North American Industry Classification System for Size Standards | Proposed Rule | 2017-04-18T04:00:00Z | 2017 | 4 | 2017-04-18T04:00:00Z | 2017-06-20T03:59:59Z | 2017-06-20T13:02:36Z | 2017-07709 | 0 | 0 | 090000648255c21c |
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;