documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "NASA", document_type = "Rule" and posted_year = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_date, posted_month, comment_start_date, 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-2013-0005-0002 | NASA | Small Business Policy NASA-2013-0005 | Small Business Policy | Rule | 2013-12-23T05:00:00Z | 2013 | 12 | 2013-12-23T05:00:00Z | 2014-01-23T04:59:59Z | 2014-03-26T16:14:06Z | 2013-30510 | 0 | 0 | 09000064814d2f08 | |
| NASA-2013-0001-0001 | NASA | Boards and Committee NASA-2013-0001 | Removal of Redundant Regulations | Rule | 2013-12-16T05:00:00Z | 2013 | 12 | 2013-12-16T05:00:00Z | 2014-01-16T04:59:59Z | 2014-03-26T16:08:38Z | 2013-29475 | 0 | 0 | 09000064814c1c4c | |
| 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-2012-0007-0001 | NASA | NASA Security and Protective Services Enforcement NASA-2012-0007 | Security and Protective Services Enforcement | Rule | 2013-01-24T05:00:00Z | 2013 | 1 | 2013-01-24T05:00:00Z | 2013-02-26T04:59:59Z | 2013-02-07T19:43:03Z | 2013-00533 | 0 | 0 | 09000064811d5b7e | |
| NASA-2012-0006-0001 | NASA | NASA Information Security Protection NASA-2012-0006 | NASA Information Security Protection | Rule | 2013-01-24T05:00:00Z | 2013 | 1 | 2013-01-24T05:00:00Z | 2013-02-26T04:59:59Z | 2013-02-07T19:41:33Z | 2013-00532 | 0 | 0 | 09000064811d5b81 |
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;