documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "NCUA", document_type = "Rule" and posted_year = 2012 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-2012-0041-0001 | NCUA | Fidelity Bond and Insurance Coverage NCUA-2012-0041 | Fidelity Bond and Insurance Coverage | Rule | 2012-12-13T05:00:00Z | 2012 | 12 | 2012-12-13T05:00:00Z | 2012-12-13T13:47:55Z | 2012-30075 | 0 | 0 | 090000648118aff4 | ||
| NCUA-2012-0040-0001 | NCUA | Alternatives to Use of Credit Ratings NCUA-2012-0040 | Alternatives to Use of Credit Ratings | Rule | 2012-12-13T05:00:00Z | 2012 | 12 | 2012-12-13T05:00:00Z | 2012-12-13T13:46:16Z | 2012-30076 | 0 | 0 | 090000648118ae4b | ||
| NCUA-2012-0038-0001 | NCUA | Regulations Affecting Credit Unions; Technical Amendments NCUA-2012-0038 | Regulations Affecting Credit Unions; Technical Amendments | Rule | 2012-11-29T05:00:00Z | 2012 | 11 | 2012-11-29T05:00:00Z | 2012-11-29T13:38:21Z | 2012-28666 | 0 | 0 | 090000648117742e | ||
| NCUA-2012-0026-0001 | NCUA | Interest Rate Risk Policy and Program NCUA-2012-0026 | Interest Rate Risk Policy and Program | Rule | 2012-09-19T04:00:00Z | 2012 | 9 | 2012-09-19T04:00:00Z | 2012-09-19T12:57:40Z | C1-2012-2091 | 0 | 0 | 090000648111decd | ||
| NCUA-2012-0015-0001 | NCUA | Guidelines for Supervisory Review Committee NCUA-2012-0015 | Guidelines for Supervisory Review Committee | Rule | 2012-05-31T04:00:00Z | 2012 | 5 | 2012-05-31T04:00:00Z | 2012-07-03T03:59:59Z | 2012-05-31T13:21:10Z | 2012-13210 | 0 | 0 | 0900006481022d5b | |
| NCUA-2012-0016-0001 | NCUA | Loan Workouts and Nonaccrual Policy, and Regulatory Reporting of Troubled Debt Restructured Loans NCUA-2012-0016 | Loan Workouts and Nonaccrual Policy, and Regulatory Reporting of Troubled Debt Restructured Loans | Rule | 2012-05-31T04:00:00Z | 2012 | 5 | 2012-05-31T04:00:00Z | 2012-05-31T13:21:22Z | 2012-13214 | 0 | 0 | 0900006481022d79 | ||
| NCUA-2012-0017-0001 | NCUA | Eligible Obligations, Charitable Contributions, Nonmember Deposits, Fixed Assets, Investments, Fidelity Bonds, Incidental Powers, Member Business Loans, and Regulatory Flexibility Program NCUA-2012-0017 | Eligible Obligations, Charitable Contributions, Nonmember Deposits, Fixed Assets, Investments, Fidelity Bonds, Incidental Powers, Member Business Loans, and Regulatory Flexibility Program | Rule | 2012-05-31T04:00:00Z | 2012 | 5 | 2012-05-31T04:00:00Z | 2012-07-31T03:59:59Z | 2012-05-31T13:21:25Z | 2012-13212 | 0 | 0 | 0900006481022d7d | |
| NCUA-2012-0010-0001 | NCUA | Technical Amendments NCUA-2012-0010 | Technical Amendments | Rule | 2012-03-21T04:00:00Z | 2012 | 3 | 2012-03-21T04:00:00Z | 2012-03-21T12:30:13Z | 2012-06835 | 0 | 0 | 0900006480fdc8b8 | ||
| NCUA-2012-0005-0001 | NCUA | Interest Rate Risk Policy and Program NCUA-2012-0005 | Interest Rate Risk Policy and Program | Rule | 2012-02-02T05:00:00Z | 2012 | 2 | 2012-02-02T05:00:00Z | 2012-02-02T13:33:10Z | 2012-02091 | 0 | 0 | 0900006480fabd74 |
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;