documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NASA_FRDOC_0001" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-0403 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | UA: Reg Flex Agenda | Proposed Rule | 2019-12-26T05:00:00Z | 2019 | 12 | 2019-12-26T05:00:00Z | 2019-12-26T12:51:47Z | 2019-26569 | 0 | 0 | 090000648424fe02 | ||
| NASA_FRDOC_0001-0402 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Procedures for Disclosure of Records under the Freedom of Information Act | Rule | 2019-10-11T04:00:00Z | 2019 | 10 | 2019-10-11T04:00:00Z | 2019-10-11T11:46:27Z | 2019-21710 | 0 | 0 | 0900006484087563 | ||
| NASA_FRDOC_0001-0401 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Uniform Administrative Requirements, Cost Principles, and Audit Requirements for Federal Awards | Rule | 2019-09-19T04:00:00Z | 2019 | 9 | 2019-09-19T04:00:00Z | 2019-09-19T11:53:10Z | 2019-19948 | 0 | 0 | 0900006483f9b2b5 | ||
| NASA_FRDOC_0001-0399 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Types of Contracts: CFR Correction | Rule | 2019-05-09T04:00:00Z | 2019 | 5 | 2019-05-09T04:00:00Z | 2019-05-09T12:23:01Z | 2019-09628 | 0 | 0 | 0900006483c4ae14 | ||
| NASA_FRDOC_0001-0400 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Uniform Administrative Requirements, Cost Principles, and Audit Requirements for Federal Awards | Rule | 2019-05-09T04:00:00Z | 2019 | 5 | 2019-05-09T04:00:00Z | 2019-06-11T03:59:59Z | 2019-05-09T12:24:07Z | 2019-09569 | 0 | 0 | 0900006483c4ae63 | |
| NASA_FRDOC_0001-0397 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Implementation of the Federal Civil Penalties Inflation Adjustment Act and Adjustment of Amounts for 2019 | Rule | 2019-04-11T04:00:00Z | 2019 | 4 | 2019-04-11T04:00:00Z | 2019-04-11T11:54:42Z | C1-2019-06555 | 0 | 0 | 0900006483b821ef | ||
| NASA_FRDOC_0001-0396 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Implementation of the Federal Civil Penalties Inflation Adjustment Act and Adjustment of Amounts for 2019 | Rule | 2019-04-04T04:00:00Z | 2019 | 4 | 2019-04-04T04:00:00Z | 2019-04-04T12:10:49Z | 2019-06555 | 0 | 0 | 0900006483b631fe |
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;