documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "NCUA", document_type = "Rule" and posted_year = 2024 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), 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NCUA_FRDOC_0001-0422 | NCUA | Recently Posted NCUA Rules and Notices. NCUA_FRDOC_0001 | Succession Planning | Rule | 2024-12-26T05:00:00Z | 2024 | 12 | 2024-12-26T05:00:00Z | 2024-12-26T13:41:04Z | 2024-30449 | 0 | 0 | 090000648688c590 | ||
| NCUA-2023-0023-0011 | NCUA | Fair Hiring in Banking NCUA-2023-0023 | Fair Hiring in Banking | Rule | 2024-09-30T04:00:00Z | 2024 | 9 | 2024-09-30T04:00:00Z | 2024-09-30T13:08:34Z | 2024-21887 | 0 | 0 | 09000064867a02e8 | ||
| NCUA-2023-0082-0014 | NCUA | Simplification of Share Insurance Rules NCUA-2023-0082 | Simplification of Share Insurance Rules | Rule | 2024-09-30T04:00:00Z | 2024 | 9 | 2024-09-30T04:00:00Z | 2024-09-30T13:07:54Z | 2024-21888 | 0 | 0 | 090000648679fa56 | ||
| NCUA-2023-0019-0020 | NCUA | Quality Control Standards for Automated Valuation Models NCUA-2023-0019 | Quality Control Standards for Automated Valuation Models | Rule | 2024-08-07T04:00:00Z | 2024 | 8 | 2024-08-07T04:00:00Z | 2024-08-08T13:00:07Z | 2024-16197 | 0 | 0 | 0900006486622609 | ||
| NCUA-2023-0061-0012 | NCUA | Interagency Guidance on Reconsiderations of Value of Residential Real Estate NCUA-2023-0061 | Interagency Guidance: Reconsiderations of Value of Residential Real Estate Valuations | Rule | 2024-07-26T04:00:00Z | 2024 | 7 | 2024-07-26T04:00:00Z | 2024-07-26T13:34:23Z | 2024-16200 | 0 | 0 | 0900006486606e7f | ||
| NCUA-2024-0008-0001 | NCUA | Civil Monetary Penalty Inflation Adjustment NCUA-2024-0008 | Civil Monetary Penalty Inflation Adjustment | Rule | 2024-01-10T05:00:00Z | 2024 | 1 | 2024-01-10T05:00:00Z | 2024-01-10T16:19:29Z | 2024-00316 | 0 | 0 | 090000648638f5da |
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;