documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "SBA", document_type = "Notice" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, comment_end_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-2022-0017-0001 | SBA | National Women’s Business Council; Notice of Public Meeting SBA-2022-0017 | National Women’s Business Council; Notice of Public Meeting | Notice | 2022-12-13T05:00:00Z | 2022 | 12 | 2022-12-13T05:00:00Z | 2022-12-14T00:03:02Z | 0 | 0 | 0900006485535164 | |||
| SBA-2022-0003-0001 | SBA | Community Advantage Pilot Program SBA-2022-0003 | Community Advantage Pilot Program | Notice | 2022-04-29T04:00:00Z | 2022 | 4 | 2022-04-29T04:00:00Z | 2022-06-01T03:59:59Z | 2022-06-01T01:00:46Z | 0 | 0 | 0900006485043dd9 | ||
| SBA-2022-0002-0001 | SBA | Community Advantage Pilot Program SBA-2022-0002 | Community Advantage Pilot Program | Notice | 2022-04-22T04:00:00Z | 2022 | 4 | 2022-04-22T04:00:00Z | 2022-05-03T03:59:59Z | 2022-05-03T13:22:44Z | 0 | 0 | 090000648502e76d | ||
| SBA-2022-0001-0001 | SBA | Notice of intent to waive the Nonmanufacturer Rule for dental equipment and supplies SBA-2022-0001 | SBA-2022-0001 | Notice | 2022-03-11T05:00:00Z | 2022 | 3 | 2022-03-11T05:00:00Z | 2022-04-12T03:59:59Z | 2022-04-12T01:00:47Z | 0 | 0 | 0900006484fc40a1 | ||
| SBA-2020-0048-0001 | SBA | Termination of Nonmanufacturer Rule Class Waiver SBA-2020-0048 | Termination of Nonmanufacturer Rule Class Waiver | Notice | 2022-02-18T05:00:00Z | 2022 | 2 | 2022-02-18T05:00:00Z | 2022-03-10T04:59:59Z | 2022-02-18T23:20:04Z | 0 | 0 | 0900006484f8c143 | ||
| SBA-2021-0012-0001 | SBA | Small Business Size Standards: Termination of Nonmanufacturer Rule Class Waiver SBA-2021-0012 | Small Business Size Standards: Termination of Nonmanufacturer Rule Class Waiver | Notice | 2022-02-18T05:00:00Z | 2022 | 2 | 2022-02-18T05:00:00Z | 2022-03-10T04:59:59Z | 2022-02-18T23:27:11Z | 0 | 0 | 0900006484f8c153 |
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;