documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "NASA", document_type = "Proposed Rule" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_date, posted_month, comment_start_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-0344 | NASA | Recently Posted NASA Rules and Notices. NASA_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 | 2015-12-11T22:00:23Z | 2015-30122 | 0 | 0 | 0900006481d72aaf | |
| NASA_FRDOC_0001-0338 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulations: Standard Forms for Bonds; Revisions | Proposed Rule | 2015-10-20T04:00:00Z | 2015 | 10 | 2015-10-20T04:00:00Z | 2015-12-22T04:59:59Z | 2015-10-20T12:30:41Z | 2015-26581 | 0 | 0 | 0900006481cd8982 | |
| NASA-2015-0010-0001 | NASA | Space Flight NASA-2015-0010 | Space Flight | Proposed Rule | 2015-10-20T04:00:00Z | 2015 | 10 | 2015-10-20T04:00:00Z | 2015-11-20T04:59:59Z | 2015-11-14T02:31:59Z | 2015-26475 | 0 | 0 | 0900006481cd8988 | |
| NASA_FRDOC_0001-0334 | NASA | Recently Posted NASA Rules and Notices. NASA_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:53Z | 2015-21756 | 0 | 0 | 0900006481c5dddf | |
| NASA_FRDOC_0001-0330 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulations Supplement: Safety and Health Measures and Mishap Reporting | Proposed Rule | 2015-08-12T04:00:00Z | 2015 | 8 | 2015-08-12T04:00:00Z | 2015-10-14T03:59:59Z | 2015-08-12T12:37:56Z | 2015-19772 | 0 | 0 | 0900006481c19b6c | |
| NASA_FRDOC_0001-0324 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Denied Access to NASA Facilities | Proposed Rule | 2015-05-13T04:00:00Z | 2015 | 5 | 2015-05-13T04:00:00Z | 2015-07-14T03:59:59Z | 2015-07-09T01:30:35Z | 2015-10944 | 0 | 0 | 0900006481ade004 | |
| NASA-2015-0004-0001 | NASA | NASA Far Supplement: Drug and Alcohol Free Workplace NASA-2015-0004 | Drug- and Alcohol-Free Workforce and Mission Critical Systems Personnel Reliability Program | Proposed Rule | 2015-05-08T04:00:00Z | 2015 | 5 | 2015-05-08T04:00:00Z | 2015-07-08T03:59:59Z | 2015-07-08T01:30:50Z | 2015-10945 | 0 | 0 | 0900006481ad5333 | |
| NASA_FRDOC_0001-0321 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulations: Supplement Regulatory Review No. 3 | Proposed Rule | 2015-04-07T04:00:00Z | 2015 | 4 | 2015-04-07T04:00:00Z | 2015-06-09T03:59:59Z | 2015-04-07T12:26:38Z | 2015-07737 | 0 | 0 | 0900006481a903bf |
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;