documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NASA_FRDOC_0001" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NASA_FRDOC_0001-0416 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | To Research, Evaluate, Assess, and Treat Astronauts | Rule | 2020-11-18T05:00:00Z | 2020 | 11 | 2020-11-18T05:00:00Z | 2020-11-18T12:48:14Z | 2020-24639 | 0 | 0 | 0900006484965834 | ||
| NASA_FRDOC_0001-0413 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Seal, Insignia, Logotype, Program Identifiers, Flags, and the Unified Visual Communications System | Rule | 2020-11-12T05:00:00Z | 2020 | 11 | 2020-11-12T05:00:00Z | 2020-12-15T04:59:59Z | 2020-11-14T02:00:59Z | 2020-23481 | 0 | 0 | 0900006484959835 | |
| NASA_FRDOC_0001-0412 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | NASA Federal Acquisition Regulation Supplement: Use of Government Property for Commercial Work | Rule | 2020-10-09T04:00:00Z | 2020 | 10 | 2020-10-09T04:00:00Z | 2020-11-10T04:59:59Z | 2020-10-09T11:48:15Z | 2020-20468 | 0 | 0 | 09000064848f1625 | |
| NASA_FRDOC_0001-0411 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulations: Detection and Avoidance of Counterfeit Parts; Supplement | Rule | 2020-08-27T04:00:00Z | 2020 | 8 | 2020-08-27T04:00:00Z | 2020-08-27T11:56:14Z | 2020-16986 | 0 | 0 | 0900006484823c7f | ||
| NASA_FRDOC_0001-0410 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulations: Applicability of Inflation Adjustments of Acquisition-Related Thresholds | Rule | 2020-05-18T04:00:00Z | 2020 | 5 | 2020-05-18T04:00:00Z | 2020-05-18T11:57:28Z | C1-2020-07109 | 0 | 0 | 09000064846304b5 | ||
| NASA_FRDOC_0001-0409 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulations: Construction Contract Administration | Proposed Rule | 2020-04-01T04:00:00Z | 2020 | 4 | 2020-04-01T04:00:00Z | 2020-06-02T03:59:59Z | 2020-04-01T11:52:53Z | 2020-05866 | 0 | 0 | 090000648447dcb3 | |
| NASA_FRDOC_0001-0408 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulation: Standards in Information and Communication Technology | Proposed Rule | 2020-03-31T04:00:00Z | 2020 | 3 | 2020-03-31T04:00:00Z | 2020-06-02T03:59:59Z | 2020-03-31T11:58:12Z | 2020-05867 | 0 | 0 | 090000648447a979 | |
| NASA_FRDOC_0001-0407 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Guidance Procedures | Rule | 2020-03-24T04:00:00Z | 2020 | 3 | 2020-03-24T04:00:00Z | 2020-03-24T12:01:05Z | 2020-05675 | 0 | 0 | 09000064844635f8 | ||
| NASA_FRDOC_0001-0406 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Implementation of the Federal Civil Penalties Inflation Adjustment Act and Adjustment of Amounts for 2020 | Rule | 2020-03-24T04:00:00Z | 2020 | 3 | 2020-03-24T04:00:00Z | 2020-03-24T11:51:46Z | 2020-05337 | 0 | 0 | 090000648446301a |
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;