documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NSF_FRDOC_0001" and document_type = "Proposed Rule" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NSF_FRDOC_0001-2960 | NSF | Recently Posted NSF Rules and Notices. NSF_FRDOC_0001 | Federal Cyber Scholarship-for-Service Program | Proposed Rule | 2022-07-15T04:00:00Z | 2022 | 7 | 2022-07-15T04:00:00Z | 2022-09-14T03:59:59Z | 2022-09-09T01:00:42Z | 2022-14328 | 0 | 0 | 09000064851ccd9c | |
| NSF_FRDOC_0001-2098 | NSF | Recently Posted NSF Rules and Notices. NSF_FRDOC_0001 | Federal Policy for the Protection of Human Subjects: Proposed Six Month Delay of the General Compliance Date While Allowing the Use of Three Burden-Reducing Provisions During the Delay Period | Proposed Rule | 2018-04-20T04:00:00Z | 2018 | 4 | 2018-04-20T04:00:00Z | 2018-04-20T12:02:56Z | 2018-08231 | 0 | 0 | 0900006483199fea | ||
| NSF_FRDOC_0001-1613 | NSF | Recently Posted NSF Rules and Notices. NSF_FRDOC_0001 | Federal Policy for the Protection of Human Subjects | Proposed Rule | 2015-11-25T05:00:00Z | 2015 | 11 | 2015-11-25T05:00:00Z | 2016-01-07T04:59:59Z | 2016-01-07T22:00:30Z | 2015-30122 | 0 | 0 | 0900006481d72457 | |
| NSF_FRDOC_0001-1550 | NSF | Recently Posted NSF Rules and Notices. NSF_FRDOC_0001 | Federal Policy for the Protection of Human Subjects | Proposed Rule | 2015-09-08T04:00:00Z | 2015 | 9 | 2015-09-08T04:00:00Z | 2015-12-08T04:59:59Z | 2016-01-12T19:23:52Z | 2015-21756 | 0 | 0 | 0900006481c5dd44 | |
| NSF_FRDOC_0001-1139 | NSF | Recently Posted NSF Rules and Notices. NSF_FRDOC_0001 | Availability of Records and Information | Proposed Rule | 2013-05-14T04:00:00Z | 2013 | 5 | 2013-05-14T04:00:00Z | 2013-06-14T03:59:59Z | 2013-06-14T01:03:08Z | 2013-10697 | 0 | 0 | 09000064812e2e2f | |
| NSF_FRDOC_0001-0355 | NSF | Recently Posted NSF Rules and Notices. NSF_FRDOC_0001 | Records and Information | Proposed Rule | 2009-04-13T04:00:00Z | 2009 | 4 | 2009-04-13T04:00:00Z | 2009-05-14T03:59:59Z | 2011-06-11T17:51:51Z | E9-08262 | 0 | 0 | 0900006480951915 | |
| NSF_FRDOC_0001-0304 | NSF | Recently Posted NSF Rules and Notices. NSF_FRDOC_0001 | Program Fraud Civil Remedies Act | Proposed Rule | 2008-12-30T05:00:00Z | 2008 | 12 | 2008-12-30T05:00:00Z | 2009-01-30T04:59:59Z | 2008-12-31T12:13:40Z | E8-29207 | 0 | 0 | 09000064808079de | |
| NSF_FRDOC_0001-0069 | NSF | Recently Posted NSF Rules and Notices. NSF_FRDOC_0001 | Semi-annual agenda | Proposed Rule | 2007-04-30T04:00:00Z | 2007 | 4 | 2007-04-30T04:00:00Z | 2007-06-06T19:58:21Z | 07-01596 | 0 | 0 | 0900006480231be8 | ||
| NSF_FRDOC_0001-0031 | NSF | Recently Posted NSF Rules and Notices. NSF_FRDOC_0001 | Semi-annual agenda | Proposed Rule | 2006-12-11T05:00:00Z | 2006 | 12 | 2006-12-11T05:00:00Z | 2007-06-11T15:46:22Z | 06-07556 | 0 | 0 | 09000064801eaa17 |
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;