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 = "Proposed Rule" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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_FRDOC_0001-0221 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Information Technology (IT) Security | Proposed Rule | 2008-12-02T05:00:00Z | 2008 | 12 | 2008-12-02T05:00:00Z | 2009-02-03T04:59:59Z | 2011-06-11T17:49:44Z | E8-28626 | 0 | 0 | 09000064807c8d6a | |
| NASA_FRDOC_0001-0222 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Government Property | Proposed Rule | 2008-12-02T05:00:00Z | 2008 | 12 | 2008-12-02T05:00:00Z | 2009-02-03T04:59:59Z | 2011-06-11T17:49:45Z | E8-28634 | 0 | 0 | 09000064807c8da9 | |
| NASA_FRDOC_0001-0219 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Regulatory Agenda Semiannual Regulatory Agenda | Proposed Rule | 2008-11-24T05:00:00Z | 2008 | 11 | 2008-11-24T05:00:00Z | 2008-12-20T23:48:55Z | E8-21239 | 0 | 0 | 09000064807bd613 | ||
| NASA_FRDOC_0001-0218 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulation; FAR Case 2008-019, Authentic Information Technology Products | Proposed Rule | 2008-11-18T05:00:00Z | 2008 | 11 | 2008-11-18T05:00:00Z | 2009-01-21T04:59:59Z | 2008-12-20T23:48:55Z | E8-27275 | 0 | 0 | 09000064807af93a | |
| NASA_FRDOC_0001-0212 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Protection of the Florida Manatee | Proposed Rule | 2008-10-24T04:00:00Z | 2008 | 10 | 2008-10-24T04:00:00Z | 2008-12-24T04:59:59Z | 2011-06-11T17:49:44Z | E8-25401 | 0 | 0 | 0900006480776d1c | |
| NASA_FRDOC_0001-0209 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | NASA Mentor-Prot[eacute]g[eacute]Program | Proposed Rule | 2008-09-19T04:00:00Z | 2008 | 9 | 2008-09-19T04:00:00Z | 2008-11-19T04:59:59Z | 2011-06-11T17:49:35Z | E8-21984 | 0 | 0 | 090000648070f57b | |
| NASA_FRDOC_0001-0205 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Personal Identity Verification of Contractors | Proposed Rule | 2008-08-06T04:00:00Z | 2008 | 8 | 2008-08-06T04:00:00Z | 2008-10-07T03:59:59Z | 2011-06-11T17:49:35Z | E8-17951 | 0 | 0 | 09000064806b1629 | |
| NASA_FRDOC_0001-0200 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | REGULATORY AGENDA Federal Acquisition Regulation (FAR); Semiannual Regulatory Agenda | Proposed Rule | 2008-05-05T04:00:00Z | 2008 | 5 | 2008-05-05T04:00:00Z | 2008-05-05T17:43:45Z | E8-07434 | 0 | 0 | 0900006480549239 |
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;