documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NASA_FRDOC_0001" and posted_year = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-0290 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Removal of Procedures for Closeout of Grants and Cooperative Agreements | Proposed Rule | 2013-11-14T05:00:00Z | 2013 | 11 | 2013-11-14T05:00:00Z | 2013-11-14T14:16:38Z | 2013-27234 | 0 | 0 | 090000648147d877 | ||
| NASA_FRDOC_0001-0291 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Removal of Procedures for Delegation of Administration of Grants and Cooperative Agreements | Proposed Rule | 2013-11-14T05:00:00Z | 2013 | 11 | 2013-11-14T05:00:00Z | 2013-11-14T14:16:41Z | 2013-27232 | 0 | 0 | 090000648147d87a | ||
| NASA_FRDOC_0001-0289 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulation Supplements: Proposal Adequacy Checklist | Proposed Rule | 2013-10-29T04:00:00Z | 2013 | 10 | 2013-10-29T04:00:00Z | 2013-12-31T04:59:59Z | 2013-12-31T02:02:01Z | 2013-25287 | 0 | 0 | 0900006481464bce | |
| NASA_FRDOC_0001-0287 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | NASA FAR Supplement Regulatory Review No. 1 | Proposed Rule | 2013-04-18T04:00:00Z | 2013 | 4 | 2013-04-18T04:00:00Z | 2013-06-18T03:59:59Z | 2013-06-18T01:01:56Z | 2013-06441 | 0 | 0 | 0900006481299adb | |
| NASA_FRDOC_0001-0286 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Boards and Committees | Rule | 2013-04-05T04:00:00Z | 2013 | 4 | 2013-04-05T04:00:00Z | 2013-05-07T03:59:59Z | 2013-04-05T13:24:15Z | 2013-07962 | 0 | 0 | 090000648126d9d6 | |
| NASA_FRDOC_0001-0285 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Commercial Acquisitions: Extension of Suspension and Debarment Exclusions, Grants and Cooperative Agreements | Rule | 2013-02-27T05:00:00Z | 2013 | 2 | 2013-02-27T05:00:00Z | 2013-02-27T13:52:24Z | 2013-04569 | 0 | 0 | 090000648120cba0 | ||
| NASA_FRDOC_0001-0284 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Privacy Act - NASA Regulations; Correction | Rule | 2013-02-07T05:00:00Z | 2013 | 2 | 2013-02-07T05:00:00Z | 2013-02-07T14:07:10Z | 2013-02778 | 0 | 0 | 09000064811ea419 | ||
| NASA_FRDOC_0001-0281 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | REGULATORY AGENDA Semiannual Regulatory Agenda | Proposed Rule | 2013-01-08T05:00:00Z | 2013 | 1 | 2013-01-08T05:00:00Z | 2013-01-09T23:30:17Z | 2012-31505 | 0 | 0 | 09000064811b07ea |
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;