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 = "Rule" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, last_modified, 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-0264 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulation Supplements: Responsibility, Suspension and Debarment | Rule | 2011-11-23T05:00:00Z | 2011 | 11 | 2011-11-23T05:00:00Z | 2011-11-23T13:56:33Z | 2011-30148 | 0 | 0 | 0900006480f72031 | ||
| NASA_FRDOC_0001-0265 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Miscellaneous Administrative Changes | Rule | 2011-11-23T05:00:00Z | 2011 | 11 | 2011-11-23T05:00:00Z | 2011-12-24T04:59:59Z | 2011-11-23T13:59:44Z | 2011-30142 | 0 | 0 | 0900006480f72556 | |
| NASA_FRDOC_0001-0262 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | NASA Implementation of Federal Acquisition Regulation Award Fee Language Revision | Rule | 2011-08-02T04:00:00Z | 2011 | 8 | 2011-08-02T04:00:00Z | 2011-08-02T12:33:34Z | 2011-19105 | 0 | 0 | 0900006480ed380f | ||
| NASA_FRDOC_0001-0260 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Boards and Committees | Rule | 2011-07-26T04:00:00Z | 2011 | 7 | 2011-07-26T04:00:00Z | 2011-08-26T03:59:59Z | 2011-07-26T14:41:56Z | 2011-18745 | 0 | 0 | 0900006480eca295 | |
| NASA_FRDOC_0001-0258 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Major System Acquisition; Earned Value Management | Rule | 2011-07-08T04:00:00Z | 2011 | 7 | 2011-07-08T04:00:00Z | 2011-07-08T13:05:16Z | 2011-17116 | 0 | 0 | 0900006480ebcdd9 | ||
| NASA_FRDOC_0001-0252 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Implementation of Federal Acquisition Regulation Award Fee Language Revision | Rule | 2011-02-08T05:00:00Z | 2011 | 2 | 2011-02-08T05:00:00Z | 2011-04-12T03:59:59Z | 2011-06-11T17:49:39Z | 2011-02772 | 0 | 0 | 0900006480be0ecb | |
| NASA_FRDOC_0001-0251 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Information Technology Security | Rule | 2011-01-24T05:00:00Z | 2011 | 1 | 2011-01-24T05:00:00Z | 2011-06-11T17:49:38Z | 2010-32740 | 0 | 0 | 0900006480bd122e | ||
| NASA_FRDOC_0001-0250 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Government Property | Rule | 2011-01-12T05:00:00Z | 2011 | 1 | 2011-01-12T05:00:00Z | 2011-06-11T17:49:38Z | 2010-32741 | 0 | 0 | 0900006480bc974d |
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;