documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where agency_id = "NCUA", document_type = "Rule" and posted_year = 2018 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-2018-0039-0002 | NCUA | Risk-Based Capital: Supplemental Rule NCUA-2018-0039 | Risk-Based Capital | Rule | 2018-11-06T05:00:00Z | 2018 | 11 | 2022-02-11T16:26:04Z | 2018-24171 | 0 | 0 | 09000064838a1ed5 | |||
| NCUA-2018-0033-0001 | NCUA | Bylaws; Voluntary Mergers of Federally Insured Credit Unions NCUA-2018-0033 | Bylaws; Voluntary Mergers of Federally Insured Credit Unions | Rule | 2018-06-28T04:00:00Z | 2018 | 6 | 2018-06-28T04:00:00Z | 2018-06-28T11:53:39Z | 2018-13867 | 0 | 0 | 0900006483470c1f | ||
| NCUA-2018-0034-0001 | NCUA | Chartering and Field of Membership NCUA-2018-0034 | Chartering and Field of Membership | Rule | 2018-06-28T04:00:00Z | 2018 | 6 | 2018-06-28T04:00:00Z | 2018-06-28T11:55:59Z | 2018-13869 | 0 | 0 | 0900006483470cb9 | ||
| NCUA-2018-0031-0001 | NCUA | Commercial Lending NCUA-2018-0031 | Commercial Lending | Rule | 2018-06-05T04:00:00Z | 2018 | 6 | 2018-06-05T04:00:00Z | 2018-06-05T11:54:11Z | 2018-11946 | 0 | 0 | 090000648333c363 | ||
| NCUA-2018-0027-0001 | NCUA | Involuntary Liquidation of Federal Credit Unions and Claims Procedures NCUA-2018-0027 | Involuntary Liquidation of Federal Credit Unions and Claims Procedures | Rule | 2018-05-30T04:00:00Z | 2018 | 5 | 2018-05-30T04:00:00Z | 2018-05-30T11:59:17Z | 2018-11588 | 0 | 0 | 090000648330d3a6 | ||
| NCUA-2018-0024-0001 | NCUA | Accuracy of Advertising and Notice of Insured Status NCUA-2018-0024 | Accuracy of Advertising and Notice of Insured Status | Rule | 2018-04-25T04:00:00Z | 2018 | 4 | 2018-04-25T04:00:00Z | 2018-04-25T11:57:59Z | 2018-08557 | 0 | 0 | 09000064831c1094 | ||
| NCUA-2018-0023-0001 | NCUA | Capital Planning and Supervisory Stress Testing NCUA-2018-0023 | Capital Planning and Supervisory Stress Testing | Rule | 2018-04-25T04:00:00Z | 2018 | 4 | 2018-04-25T04:00:00Z | 2018-04-25T11:48:16Z | 2018-08558 | 0 | 0 | 09000064831c0d90 | ||
| NCUA-2018-0021-0001 | NCUA | Requirements for Insurance; National Credit Union Share Insurance Fund Equity Distributions; Correction NCUA-2018-0021 | Requirements for Insurance; National Credit Union Share Insurance Fund Equity Distributions; Correction | Rule | 2018-04-06T04:00:00Z | 2018 | 4 | 2018-04-06T04:00:00Z | 2018-04-06T11:51:48Z | 2018-07068 | 0 | 0 | 09000064830a882c | ||
| NCUA-2018-0013-0001 | NCUA | Requirements for Insurance: National Credit Union Share Insurance Fund Equity Distributions; Correction NCUA-2018-0013 | Requirements for Insurance: National Credit Union Share Insurance Fund Equity Distributions; Correction | Rule | 2018-03-13T04:00:00Z | 2018 | 3 | 2018-03-13T04:00:00Z | 2018-03-13T12:01:40Z | 2018-05056 | 0 | 0 | 0900006483005ca9 | ||
| NCUA-2018-0009-0001 | NCUA | Requirements for Insurance: National Credit Union Share Insurance Fund Equity Distributions NCUA-2018-0009 | Requirements for Insurance: National Credit Union Share Insurance Fund Equity Distributions | Rule | 2018-02-23T05:00:00Z | 2018 | 2 | 2018-02-23T05:00:00Z | 2018-02-23T12:46:38Z | 2018-03622 | 0 | 0 | 0900006482f55f22 | ||
| NCUA-2018-0003-0001 | NCUA | Civil Monetary Penalty Inflation Adjustment NCUA-2018-0003 | Civil Monetary Penalty Inflation Adjustment | Rule | 2018-01-16T05:00:00Z | 2018 | 1 | 2018-01-16T05:00:00Z | 2018-01-16T13:30:18Z | 2018-00488 | 0 | 0 | 0900006482e0be0c |
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;