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 = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, comment_end_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-2005-0044-0001 | NASA | Federal Acquisition Regulation; Additional Contract Types NASA-2005-0044 | Federal Acquisition Regulation; Additional Contract Types | Proposed Rule | 2005-11-29T05:00:00Z | 2005 | 11 | 2005-11-29T05:00:00Z | 2005-12-10T04:59:59Z | 2011-06-11T17:49:32Z | 05-23394 | 0 | 0 | 09000064800e6398 | |
| NASA-2005-0043-0001 | NASA | Federal Acquisition Regulation; Payments Under Time-and-Materials and Labor-Hour Contracts NASA-2005-0043 | Federal Acquisition Regulation; Payments Under Time-and-Materials and Labor-Hour Contracts | Proposed Rule | 2005-11-29T05:00:00Z | 2005 | 11 | 2005-11-29T05:00:00Z | 2005-12-10T04:59:59Z | 2011-06-11T17:49:32Z | 05-23395 | 0 | 0 | 09000064800e61ae | |
| NASA-2005-0032-0001 | NASA | NASA Federal Acquisition Regulation (FAR) Supplement--Research and Development Abstracts NASA-2005-0032 | NASA Federal Acquisition Regulation (FAR) Supplement--Research and Development Abstracts | Proposed Rule | 2005-10-18T04:00:00Z | 2005 | 10 | 2005-10-18T04:00:00Z | 2011-06-11T17:49:32Z | 05-20846 | 0 | 0 | 0900006480094228 | ||
| NASA-2005-0031-0001 | NASA | NASA Grant and Cooperative Agreement Handbook--Research and Development Abstracts NASA-2005-0031 | NASA Grant and Cooperative Agreement Handbook--Research and Development Abstracts | Proposed Rule | 2005-10-18T04:00:00Z | 2005 | 10 | 2005-10-18T04:00:00Z | 2011-06-11T17:49:32Z | 05-20845 | 0 | 0 | 0900006480094214 | ||
| NASA-2005-0018-0001 | NASA | Small Business Innovation Research (SBIR) and Small Business Technology Transfer (STTR) Contractor Re-Certification of Program Compliance NASA-2005-0018 | Small Business Innovation Research (SBIR) and Small Business Technology Transfer (STTR) Contractor Re-Certification of Program Compliance | Proposed Rule | 2005-09-30T04:00:00Z | 2005 | 9 | 2005-09-30T04:00:00Z | 2005-11-30T04:59:59Z | 2011-06-11T17:49:30Z | 05-19399 | 0 | 0 | 090000648008d1ad | |
| NASA-2005-0008-0001 | NASA | Federal Acquisition Regulation; Additional Contract Types NASA-2005-0008 | Federal Acquisition Regulation; Additional Contract Types | Proposed Rule | 2005-09-26T04:00:00Z | 2005 | 9 | 2005-09-26T04:00:00Z | 2005-11-26T04:59:59Z | 2011-06-11T17:49:28Z | 05-18965 | 0 | 0 | 090000648008b07d | |
| NASA-2005-0007-0001 | NASA | Federal Acquisition Regulation; Payments Under Time-and-Materials and Labor-Hour Contracts NASA-2005-0007 | Federal Acquisition Regulation; Payments Under Time-and-Materials and Labor-Hour Contracts | Proposed Rule | 2005-09-26T04:00:00Z | 2005 | 9 | 2005-09-26T04:00:00Z | 2005-11-26T04:59:59Z | 2011-06-11T17:49:27Z | 05-18964 | 0 | 0 | 090000648008b068 | |
| NASA-2005-0003-0001 | NASA | Federal Acquisition Regulation; Government Property NASA-2005-0003 | Federal Acquisition Regulation; Government Property | Proposed Rule | 2005-09-19T04:00:00Z | 2005 | 9 | 2005-09-19T04:00:00Z | 2005-11-19T04:59:59Z | 2011-06-11T17:49:26Z | 05-18516 | 0 | 0 | 090000648004fe2a | |
| NASA-2005-0005-0001 | NASA | Federal Acquisition Regulation; OMB Circular A-76 NASA-2005-0005 | Federal Acquisition Regulation; OMB Circular A-76 | Proposed Rule | 2005-07-26T04:00:00Z | 2005 | 7 | 2005-07-26T04:00:00Z | 2005-09-27T03:59:59Z | 2011-06-11T17:49:27Z | 05-14569 | 0 | 0 | 09000064800502ec |
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;