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 = 2017 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NCUA-2017-0056-0001 | NCUA | Agency Reorganization; Correction NCUA-2017-0056 | Agency Reorganization; Correction | Rule | 2017-12-27T05:00:00Z | 2017 | 12 | 2017-12-27T05:00:00Z | 2017-12-27T12:59:27Z | 2017-27962 | 0 | 0 | 0900006482d762b4 | ||
| NCUA-2017-0055-0001 | NCUA | Emergency Mergers-Chartering and Field of Membership NCUA-2017-0055 | Emergency Mergers-Chartering and Field of Membership | Rule | 2017-12-20T05:00:00Z | 2017 | 12 | 2017-12-20T05:00:00Z | 2017-12-20T12:49:20Z | 2017-27410 | 0 | 0 | 0900006482d3f40c | ||
| NCUA-2017-0054-0001 | NCUA | Agency Reorganization NCUA-2017-0054 | Agency Reorganization | Rule | 2017-12-20T05:00:00Z | 2017 | 12 | 2017-12-20T05:00:00Z | 2017-12-20T12:48:00Z | 2017-27411 | 0 | 0 | 0900006482d3f36c | ||
| NCUA-2017-0049-0001 | NCUA | Corporate Credit Unions NCUA-2017-0049 | Corporate Credit Unions | Rule | 2017-11-22T05:00:00Z | 2017 | 11 | 2017-11-22T05:00:00Z | 2017-11-22T12:59:50Z | 2017-25223 | 0 | 0 | 0900006482c9ec42 | ||
| NCUA-2017-0043-0001 | NCUA | SupervisoryReview Committee; Procedures for Appealing Material Supervisory Determinations NCUA-2017-0043 | SupervisoryReview Committee; Procedures for Appealing Material Supervisory Determinations | Rule | 2017-10-30T04:00:00Z | 2017 | 10 | 2017-10-30T04:00:00Z | 2017-10-30T11:44:41Z | 2017-23213 | 0 | 0 | 0900006482c2187f | ||
| NCUA-2017-0044-0001 | NCUA | Appeals Procedures NCUA-2017-0044 | Appeals Procedures | Rule | 2017-10-30T04:00:00Z | 2017 | 10 | 2017-10-30T04:00:00Z | 2017-10-30T11:45:03Z | 2017-23211 | 0 | 0 | 0900006482c21d1a | ||
| NCUA-2017-0041-0001 | NCUA | Financial Institutions Reform, Recovery, and Enforcement Act Appraisal Requirements: Areas Affected by Severe Storms and Flooding Related to Hurricanes Harvey, Irma, and Maria NCUA-2017-0041 | Financial Institutions Reform, Recovery, and Enforcement Act Appraisal Requirements: Areas Affected by Severe Storms and Flooding Related to Hurricanes Harvey, Irma, and Maria | Rule | 2017-10-24T04:00:00Z | 2017 | 10 | 2017-10-24T04:00:00Z | 2017-10-24T11:57:34Z | 2017-22957 | 0 | 0 | 0900006482bfd4ab | ||
| NCUA-2017-0024-0001 | NCUA | Safe Harbor NCUA-2017-0024 | Safe Harbor | Rule | 2017-06-30T04:00:00Z | 2017 | 6 | 2017-06-30T04:00:00Z | 2017-06-30T12:10:28Z | 2017-13636 | 0 | 0 | 09000064827c0460 | ||
| NCUA-2017-0025-0001 | NCUA | Civil Monetary Penalty Inflation Adjustment NCUA-2017-0025 | Civil Monetary Penalty Inflation Adjustment | Rule | 2017-06-30T04:00:00Z | 2017 | 6 | 2017-06-30T04:00:00Z | 2017-06-30T12:10:31Z | 2017-13643 | 0 | 0 | 09000064827c0464 | ||
| NCUA-2017-0022-0001 | NCUA | Freedom of Information Act NCUA-2017-0022 | Freedom of Information Act | Rule | 2017-06-30T04:00:00Z | 2017 | 6 | 2017-06-30T04:00:00Z | 2017-06-30T12:08:07Z | 2017-13640 | 0 | 0 | 09000064827c020f | ||
| NCUA-2017-0002-0001 | NCUA | Civil Monetary Penalty Inflation Adjustment NCUA-2017-0002 | Civil Monetary Penalty Inflation Adjustment | Rule | 2017-01-23T05:00:00Z | 2017 | 1 | 2017-01-23T05:00:00Z | 2017-02-23T04:59:59Z | 2017-01-20T15:37:17Z | 2017-00473 | 0 | 0 | 0900006482488b8b |
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;