documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "NASA", document_type = "Proposed Rule" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NASA_FRDOC_0001-0372 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulation Supplement: Award Term | Proposed Rule | 2016-12-09T05:00:00Z | 2016 | 12 | 2016-12-09T05:00:00Z | 2017-02-08T04:59:59Z | 2016-12-15T02:01:06Z | 2016-29443 | 0 | 0 | 09000064823f4ad6 | |
| NASA-2016-0007-0001 | NASA | Engineering Change Proposals NASA-2016-0007 | Remove NASA FAR Supplement Clause, Engineering Change Proposals | Proposed Rule | 2016-08-17T04:00:00Z | 2016 | 8 | 2016-08-17T04:00:00Z | 2016-10-18T03:59:59Z | 2016-10-13T15:56:13Z | 2016-19566 | 0 | 0 | 090000648217cec8 | |
| NASA-2016-0006-0001 | NASA | Contractor Financial Reporting of Property NASA-2016-0006 | Federal Acquisition Regulation Supplements: Contractor Financial Reporting of Property | Proposed Rule | 2016-07-26T04:00:00Z | 2016 | 7 | 2016-07-26T04:00:00Z | 2016-09-27T03:59:59Z | 2016-10-04T14:28:00Z | 2016-17559 | 0 | 0 | 090000648212232b | |
| NASA_FRDOC_0001-0361 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Regulatory Agenda | Proposed Rule | 2016-06-09T04:00:00Z | 2016 | 6 | 2016-06-09T04:00:00Z | 2016-06-09T13:56:29Z | 2016-12925 | 0 | 0 | 0900006482025ce0 | ||
| NASA-2016-0004-0002 | NASA | NASA Federal Regulation Supplement: Revisions to Uniform Administrative Requirements, Cost Principles and Audit Requirements for Federal Awards (NASA Case 2015-N030) NASA-2016-0004 | Uniform Administrative Requirements, Cost Principles and Audit Requirements for Federal Awards | Proposed Rule | 2016-04-27T04:00:00Z | 2016 | 4 | 2016-04-27T04:00:00Z | 2016-06-28T03:59:59Z | 2016-07-21T15:53:08Z | 2016-09625 | 0 | 0 | 0900006481f91774 | |
| NASA-2016-0002-0001 | NASA | Federal Acquisition Regulation Supplements: Clarification of Award Fee Evaluations and Payments NASA-2016-0002 | Federal Acquisition Regulation Supplements: Clarification of Award Fee Evaluations and Payments | Proposed Rule | 2016-04-22T04:00:00Z | 2016 | 4 | 2016-04-22T04:00:00Z | 2016-06-22T03:59:59Z | 2016-06-24T14:07:41Z | 2016-09356 | 0 | 0 | 0900006481f831ee | |
| NASA_FRDOC_0001-0355 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Removal of Outdated and Duplicative Guidance | Proposed Rule | 2016-03-28T04:00:00Z | 2016 | 3 | 2016-03-28T04:00:00Z | 2016-05-28T03:59:59Z | 2016-03-28T12:31:32Z | 2016-06887 | 0 | 0 | 0900006481ee3ab6 | |
| NASA_FRDOC_0001-0352 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Removal of Grant Handbook References | Proposed Rule | 2016-03-14T04:00:00Z | 2016 | 3 | 2016-03-14T04:00:00Z | 2016-05-14T03:59:59Z | 2016-03-14T12:51:54Z | 2016-05230 | 0 | 0 | 0900006481ebf889 | |
| NASA_FRDOC_0001-0349 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Cooperative Agreements with Commercial Firms | Proposed Rule | 2016-02-22T05:00:00Z | 2016 | 2 | 2016-02-22T05:00:00Z | 2016-04-23T03:59:59Z | 2016-02-29T09:00:15Z | 2016-02979 | 0 | 0 | 0900006481e7bdf2 | |
| NASA_FRDOC_0001-0346 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulations: FAR Case 2014-004, Payment of Subcontractors | Proposed Rule | 2016-01-20T05:00:00Z | 2016 | 1 | 2016-01-20T05:00:00Z | 2016-01-20T13:56:15Z | 2016-00950 | 0 | 0 | 0900006481e20900 |
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;