documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "NASA", document_type = "Proposed Rule" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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-2014-0011-0001 | NASA | Discrimination on the Basis of Disability in Federally Assisted Programs and Actitives NASA-2014-0011 | Discrimination on the Basis of Disability in Federally Assisted Programs and Activities | Proposed Rule | 2014-11-13T05:00:00Z | 2014 | 11 | 2014-11-13T05:00:00Z | 2014-12-16T04:59:59Z | 2014-12-16T03:06:21Z | 2014-26543 | 0 | 0 | 090000648192b9c7 | |
| NASA_FRDOC_0001-0314 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Removal of Procedures for Delegation of Administration of Grants and Cooperative Agreements; Withdrawal | Proposed Rule | 2014-10-09T04:00:00Z | 2014 | 10 | 2014-10-09T04:00:00Z | 2014-10-09T13:22:47Z | 2014-22693 | 0 | 0 | 09000064818b5bae | ||
| NASA-2014-0009-0001 | NASA | NASA Protective Services Enforcement NASA-2014-0009 | Patents and Other Intellectual Property Rights | Proposed Rule | 2014-10-06T04:00:00Z | 2014 | 10 | 2014-10-06T04:00:00Z | 2014-11-06T04:59:59Z | 2014-11-13T00:19:05Z | 2014-23739 | 0 | 0 | 09000064818ac9f5 | |
| NASA_FRDOC_0001-0312 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulations: Supplement Regulatory Review No. 2 | Proposed Rule | 2014-09-24T04:00:00Z | 2014 | 9 | 2014-09-24T04:00:00Z | 2014-11-25T04:59:59Z | 2014-09-24T13:09:03Z | 2014-21476 | 0 | 0 | 090000648188c704 | |
| NASA_FRDOC_0001-0305 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | NASA Protective Services Enforcement | Proposed Rule | 2014-07-01T04:00:00Z | 2014 | 7 | 2014-07-01T04:00:00Z | 2014-08-01T03:59:59Z | 2014-07-01T12:45:59Z | 2014-15156 | 0 | 0 | 090000648177849d | |
| NASA_FRDOC_0001-0299 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Profit and Fee under Federal Financial Assistance Awards | Proposed Rule | 2014-02-25T05:00:00Z | 2014 | 2 | 2014-02-25T05:00:00Z | 2014-04-29T03:59:59Z | 2014-02-25T14:03:52Z | 2014-02988 | 0 | 0 | 09000064815b0d0d | |
| NASA_FRDOC_0001-0300 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Procedures for Disclosure of Records Freedom of Information Act Regulations; Correction | Proposed Rule | 2014-02-25T05:00:00Z | 2014 | 2 | 2014-02-25T05:00:00Z | 2014-02-25T14:09:40Z | 2014-03870 | 0 | 0 | 09000064815b1538 | ||
| NASA-2013-0006-0001 | NASA | 14 CFR Pt 126, Procedures for Disclosure of Records NASA-2013-0006 | Procedures for Disclosure of Records Freedom of Information Act | Proposed Rule | 2014-02-19T05:00:00Z | 2014 | 2 | 2014-02-19T05:00:00Z | 2014-03-22T03:59:59Z | 2014-03-26T15:31:52Z | 2014-03450 | 0 | 0 | 0900006481581c70 | |
| NASA_FRDOC_0001-0295 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Regulatory Agenda | Proposed Rule | 2014-01-07T05:00:00Z | 2014 | 1 | 2014-01-07T05:00:00Z | 2014-01-07T16:48:31Z | 2013-29642 | 0 | 0 | 09000064814f12ad |
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;