documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "NASA", document_type = "Rule" and posted_year = 2006 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_FRDOC_0001-0162 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulation; Federal Acquisition Circular 2005-15; Small Entity Compliance Guide | Rule | 2006-12-12T05:00:00Z | 2006 | 12 | 2006-12-12T05:00:00Z | 2006-12-12T12:07:54Z | 06-09612 | 0 | 0 | 09000064801eb3ef | ||
| NASA_FRDOC_0001-0161 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulation; Federal Acquisition Circular 2005-15; Introduction | Rule | 2006-12-12T05:00:00Z | 2006 | 12 | 2006-12-12T05:00:00Z | 2006-12-12T12:07:47Z | 06-09611 | 0 | 0 | 09000064801eb3e3 | ||
| NASA_FRDOC_0001-0158 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | NASA FAR Supplement Administrative Changes | Rule | 2006-12-08T05:00:00Z | 2006 | 12 | 2006-12-08T05:00:00Z | 2011-06-11T17:49:37Z | E6-20783 | 0 | 0 | 09000064801e9efa | ||
| NASA_FRDOC_0001-0155 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulation; Federal Acquisition Circular 2005-14; Introduction | Rule | 2006-11-22T05:00:00Z | 2006 | 11 | 2006-11-22T05:00:00Z | 2006-11-22T12:06:19Z | 06-09309 | 0 | 0 | 09000064801e4378 | ||
| NASA_FRDOC_0001-0157 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulation; Technical Amendments | Rule | 2006-11-22T05:00:00Z | 2006 | 11 | 2006-11-22T05:00:00Z | 2006-11-22T12:08:26Z | 06-09303 | 0 | 0 | 09000064801e4437 | ||
| NASA_FRDOC_0001-0156 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulation; Federal Acquisition Circular 2005-14; Small Entity Compliance Guide | Rule | 2006-11-22T05:00:00Z | 2006 | 11 | 2006-11-22T05:00:00Z | 2006-11-22T12:06:37Z | 06-09302 | 0 | 0 | 09000064801e4398 | ||
| NASA-2007-0001-0001 | NASA | Earned Value Management System NASA-2007-0001 | NASA Implementation of Earned Value Management (EVM) | Rule | 2006-11-13T05:00:00Z | 2006 | 11 | 2006-11-13T05:00:00Z | 2007-01-13T04:59:59Z | 2011-06-11T17:49:34Z | E6-18918 | 0 | 0 | 09000064801e0fb6 | |
| NASA_FRDOC_0001-0153 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Grant and Cooperative Agreement Handbook: Training grant and award procedures | Rule | 2006-10-24T04:00:00Z | 2006 | 10 | 2006-10-24T04:00:00Z | 2006-10-24T11:35:20Z | E6-17801 | 0 | 0 | 09000064801d8fc0 | ||
| NASA-2013-0005-0001 | NASA | Small Business Policy NASA-2013-0005 | Small Business Innovation Research (SBIR) and Small Business Technology Transfer (STTR) Contractor Recertification of Program Compliance | Rule | 2006-10-19T04:00:00Z | 2006 | 10 | 2006-10-19T04:00:00Z | 2014-02-11T17:14:20Z | E6-17043 | 0 | 0 | 09000064801d746e | ||
| NASA-2006-0001-0001 | NASA | Change in Definition of Head of the Contracting Activity NASA-2006-0001 | Change in Definition of Head of the Contracting Activity | Rule | 2006-02-15T05:00:00Z | 2006 | 2 | 2006-02-15T05:00:00Z | 2011-06-11T17:49:33Z | 06-01430 | 0 | 0 | 09000064801313bc |
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;