documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "SBA-2015-0016" and document_type = "Rule" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2015-0016-0012 | SBA | Small Business Investment Companies; Passive Business Expansion and Technical Clarifications SBA-2015-0016 | Small Business Investment Companies: Passive Business Expansion and Technical Clarifications | Rule | 2017-08-18T04:00:00Z | 2017 | 8 | 2017-08-18T04:00:00Z | 2017-09-18T13:11:09Z | 2017-17456 | 0 | 0 | 0900006482a6004e | ||
| SBA-2015-0016-0010 | SBA | Small Business Investment Companies; Passive Business Expansion and Technical Clarifications SBA-2015-0016 | Small Business Investment Companies: Passive Business Expansion and Technical Clarifications | Rule | 2017-05-02T04:00:00Z | 2017 | 5 | 2017-05-02T04:00:00Z | 2017-06-02T03:59:59Z | 2017-06-01T01:01:55Z | 2017-08810 | 0 | 0 | 0900006482589a87 | |
| SBA-2015-0016-0009 | SBA | Small Business Investment Companies; Passive Business Expansion and Technical Clarifications SBA-2015-0016 | Small Business Investment Companies: Passive Business Expansion and Technical Clarifications | Rule | 2017-03-21T04:00:00Z | 2017 | 3 | 2017-03-21T04:00:00Z | 2017-03-21T15:20:14Z | 2017-05533 | 0 | 0 | 09000064825159a4 | ||
| SBA-2015-0016-0007 | SBA | Small Business Investment Companies; Passive Business Expansion and Technical Clarifications SBA-2015-0016 | Small Business Investment Companies: Passive Business Expansion and Technical Clarifications | Rule | 2017-01-26T05:00:00Z | 2017 | 1 | 2017-01-26T05:00:00Z | 2017-02-20T04:59:59Z | 2017-02-16T02:00:37Z | 2017-01809 | 0 | 0 | 09000064824943a6 | |
| SBA-2015-0016-0006 | SBA | Small Business Investment Companies; Passive Business Expansion and Technical Clarifications SBA-2015-0016 | Small Business Investment Companies: Passive Business Expansion and Technical Clarifications | Rule | 2016-12-28T05:00:00Z | 2016 | 12 | 2016-12-28T05:00:00Z | 2017-01-03T13:58:26Z | 2016-31291 | 0 | 0 | 0900006482439f2e |
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;