documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where agency_id = "NASA", document_type = "Rule" and posted_year = 2025 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, last_modified, posted_date (date), comment_start_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-1040 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulation: Federal Acquisition Circular 2025-06; Small Entity Compliance Guide | Rule | 2025-08-27T04:00:00Z | 2025 | 8 | 2025-08-27T04:00:00Z | 2025-08-27T16:27:13Z | 2025-16413 | 0 | 0 | 09000064b8f1cf73 | ||
| NASA_FRDOC_0001-1041 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulation: Inflation Adjustment of Acquisition-Related Thresholds | Rule | 2025-08-27T04:00:00Z | 2025 | 8 | 2025-08-27T04:00:00Z | 2025-08-27T16:27:17Z | 2025-16412 | 0 | 0 | 09000064b8f1cfab | ||
| NASA_FRDOC_0001-1039 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulation: Federal Acquisition Circular 2025-06; Introduction | Rule | 2025-08-27T04:00:00Z | 2025 | 8 | 2025-08-27T04:00:00Z | 2025-08-27T16:27:10Z | 2025-16411 | 0 | 0 | 09000064b8f1cf2f | ||
| NASA_FRDOC_0001-1033 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulation: Clarification of System for Award Management Preaward Registration Requirements | Rule | 2025-08-07T04:00:00Z | 2025 | 8 | 2025-08-07T04:00:00Z | 2025-08-07T17:13:22Z | 2025-14990 | 0 | 0 | 09000064b8eec145 | ||
| NASA_FRDOC_0001-1035 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulation: Federal Acquisition Circular 2025-05; Small Entity Compliance Guide | Rule | 2025-08-07T04:00:00Z | 2025 | 8 | 2025-08-07T04:00:00Z | 2025-08-07T17:13:41Z | 2025-14987 | 0 | 0 | 09000064b8eec232 | ||
| NASA_FRDOC_0001-1034 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulation: Technical Amendments | Rule | 2025-08-07T04:00:00Z | 2025 | 8 | 2025-08-07T04:00:00Z | 2025-08-07T17:13:34Z | 2025-14991 | 0 | 0 | 09000064b8eec1ae | ||
| NASA_FRDOC_0001-0965 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulation: Federal Acquisition Circular 2025-04; Small Entity Compliance Guide | Rule | 2025-05-12T00:00:00Z | 2025 | 5 | 2025-05-12T00:00:00Z | 2025-05-21T22:33:18Z | 2025-08024 | 0 | 0 | 09000064b8d3d2df | ||
| NASA_FRDOC_0001-0967 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulation: List of Domestically Nonavailable Articles | Rule | 2025-05-12T00:00:00Z | 2025 | 5 | 2025-05-12T00:00:00Z | 2025-05-21T22:33:17Z | 2025-08022 | 0 | 0 | 09000064b8d3d2e5 | ||
| NASA_FRDOC_0001-0966 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulation: Federal Acquisition Circular 2025-04; Introduction | Rule | 2025-05-12T00:00:00Z | 2025 | 5 | 2025-05-12T00:00:00Z | 2025-05-21T22:33:17Z | 2025-08021 | 0 | 0 | 09000064b8d3d2e3 | ||
| NASA_FRDOC_0001-0968 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Federal Acquisition Regulation: Technical Amendments | Rule | 2025-05-12T00:00:00Z | 2025 | 5 | 2025-05-12T00:00:00Z | 2025-05-21T22:33:17Z | 2025-08023 | 0 | 0 | 09000064b8d3d326 | ||
| NASA_FRDOC_0001-0963 | NASA | Recently Posted NASA Rules and Notices. NASA_FRDOC_0001 | Implementation of the Federal Civil Penalties Inflation Adjustment Act and Adjustment of Amounts for 2025 | Rule | 2025-05-07T00:00:00Z | 2025 | 5 | 2025-05-07T00:00:00Z | 2025-05-21T20:18:18Z | 2025-07886 | 0 | 0 | 09000064b8d08dee |
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;