documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "NASA_FRDOC_0001" and posted_year = 2006 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-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-0159 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Semi-annual agenda | Proposed Rule | 2006-12-11T05:00:00Z | 2006 | 12 | 2006-12-11T05:00:00Z | 2007-06-11T15:46:19Z | 06-07551 | 0 | 0 | 09000064801eab93 | ||
| NASA_FRDOC_0001-0160 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulation (FAR): Semi-annual agenda | Proposed Rule | 2006-12-11T05:00:00Z | 2006 | 12 | 2006-12-11T05:00:00Z | 2006-12-11T12:10:49Z | 06-07553 | 0 | 0 | 09000064801eac2a | ||
| 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_FRDOC_0001-0152 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulation (FAR): Contract debts; policies and procedures | Proposed Rule | 2006-10-24T04:00:00Z | 2006 | 10 | 2006-10-24T04:00:00Z | 2006-12-27T04:59:59Z | 2006-10-24T11:34:11Z | 06-08806 | 0 | 0 | 09000064801d8f51 | |
| 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 |
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;