documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "NASA_FRDOC_0001" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-0384 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulations: Removal of Fair Pay and Safe Workplaces Rule | Rule | 2017-11-08T05:00:00Z | 2017 | 11 | 2017-11-08T05:00:00Z | 2017-11-08T12:56:36Z | R1-2017-23590 | 0 | 0 | 0900006482c58167 | ||
| NASA_FRDOC_0001-0383 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Implementation of the Federal Civil Penalties Inflation Adjustment Act and Adjustment of Amounts for 2017 | Rule | 2017-10-20T04:00:00Z | 2017 | 10 | 2017-10-20T04:00:00Z | 2017-10-20T11:48:44Z | 2017-22847 | 0 | 0 | 0900006482be914f | ||
| NASA_FRDOC_0001-0382 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulations: Revised Voucher and Invoice Submission and Payment Process | Proposed Rule | 2017-09-18T04:00:00Z | 2017 | 9 | 2017-09-18T04:00:00Z | 2017-09-18T11:49:38Z | 2017-19542 | 0 | 0 | 0900006482b47443 | ||
| NASA_FRDOC_0001-0381 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulations: Preproposal/Pre-bid Conference | Rule | 2017-08-16T04:00:00Z | 2017 | 8 | 2017-08-16T04:00:00Z | 2017-09-16T03:59:59Z | 2017-08-16T12:06:21Z | 2017-16962 | 0 | 0 | 0900006482a3de7c | |
| NASA_FRDOC_0001-0380 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | National Space Grant College and Fellowship Program | Rule | 2017-07-31T04:00:00Z | 2017 | 7 | 2017-07-31T04:00:00Z | 2017-08-31T03:59:59Z | 2017-07-31T11:54:24Z | 2017-15984 | 0 | 0 | 0900006482984b3c | |
| NASA_FRDOC_0001-0379 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulation Supplements: Award Term | Rule | 2017-07-25T04:00:00Z | 2017 | 7 | 2017-07-25T04:00:00Z | 2017-07-25T11:44:09Z | 2017-15520 | 0 | 0 | 0900006482962349 | ||
| NASA_FRDOC_0001-0378 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Implementation of the Federal Civil Penalties Inflation Adjustment Act; Correction | Rule | 2017-07-12T04:00:00Z | 2017 | 7 | 2017-07-12T04:00:00Z | 2017-07-12T11:48:16Z | 2017-14579 | 0 | 0 | 0900006482910c7f | ||
| NASA_FRDOC_0001-0377 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Processingof Monetary Claims | Rule | 2017-06-29T04:00:00Z | 2017 | 6 | 2017-06-29T04:00:00Z | 2017-08-01T03:59:59Z | 2017-06-29T11:50:05Z | 2017-13421 | 0 | 0 | 09000064827b75ac | |
| NASA_FRDOC_0001-0376 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Implementation of the Federal Civil Penalties Inflation Adjustment Act | Rule | 2017-06-26T04:00:00Z | 2017 | 6 | 2017-06-26T04:00:00Z | 2017-06-26T11:52:49Z | 2017-13209 | 0 | 0 | 090000648278cd9c | ||
| NASA_FRDOC_0001-0375 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Policy for Protection of Human Subjects | Rule | 2017-01-19T05:00:00Z | 2017 | 1 | 2017-01-19T05:00:00Z | 2017-01-19T16:31:42Z | 2017-01058 | 0 | 0 | 090000648248574a |
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;