documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "NCUA", document_type = "Proposed Rule" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-2019-0112-0002 | NCUA | Real Estate Appraisal NCUA-2019-0112 | Real Estate Appraisals | Proposed Rule | 2019-11-29T05:00:00Z | 2019 | 11 | 2019-11-29T05:00:00Z | 2020-01-29T04:59:59Z | 2020-01-29T02:07:55Z | 2019-25768 | 0 | 0 | 09000064841c881e | |
| NCUA-2022-0026-0001 | NCUA | Chartering and Field of Membership NCUA-2022-0026 | Chartering and Field of Membership | Proposed Rule | 2019-11-07T05:00:00Z | 2019 | 11 | 2022-02-11T18:19:06Z | 2019-23680 | 0 | 0 | 09000064841275f3 | |||
| NCUA_FRDOC_0001-0069 | NCUA | Recently Posted NCUA Rules and Notices. NCUA_FRDOC_0001 | Policy Statement on Allowance for Credit Losses | Proposed Rule | 2019-10-17T04:00:00Z | 2019 | 10 | 2020-08-05T15:40:35Z | 2019-22655 | 0 | 0 | 09000064840b029a | |||
| NCUA-2022-0033-0001 | NCUA | Exceptions to Employment Restrictions Under Section 205(d) of the Federal Credit Union Act (‘‘Second Chance IRPS’’) NCUA-2022-0033 | Exceptions to Employment Restrictions under the Federal Credit Union Act (Second Chance IRPS) | Proposed Rule | 2019-07-29T04:00:00Z | 2019 | 7 | 2022-02-14T16:10:05Z | 2019-15706 | 0 | 0 | 0900006483dc2093 | |||
| NCUA-2022-0025-0001 | NCUA | Delay of Effective Date of Risk-Based Capital Rules NCUA-2022-0025 | Delay of Effective Date of Risk-Based Capital Rules | Proposed Rule | 2019-06-26T04:00:00Z | 2019 | 6 | 2022-02-11T17:21:02Z | 2019-13589 | 0 | 0 | 0900006483d42516 | |||
| NCUA-2022-0028-0001 | NCUA | Public Unit and Nonmember Shares NCUA-2022-0028 | Public Unit and Nonmember Shares | Proposed Rule | 2019-05-30T04:00:00Z | 2019 | 5 | 2022-02-11T19:26:35Z | 2019-11296 | 0 | 0 | 0900006483cd598f | |||
| NCUA-2022-0029-0001 | NCUA | Compensation in Connection with Loans to Members and Lines of Credit to Members NCUA-2022-0029 | Compensation in Connection with Loans to Members and Lines of Credit to Members | Proposed Rule | 2019-04-23T04:00:00Z | 2019 | 4 | 2022-02-11T19:43:02Z | 2019-08166 | 0 | 0 | 0900006483be1345 | |||
| NCUA-2022-0027-0001 | NCUA | Supervisory Committee Audits and Verifications NCUA-2022-0027 | Supervisory Committee Audits and Verifications | Proposed Rule | 2019-02-25T05:00:00Z | 2019 | 2 | 2022-02-11T19:17:52Z | 2019-03164 | 0 | 0 | 0900006483aa2c9a |
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;