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 = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, last_modified, 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-2008-0061-0001 | NCUA | Credit Union Service Organizations NCUA-2008-0061 | Credit Union Service Organizations | Rule | 2008-12-29T05:00:00Z | 2008 | 12 | 2008-12-29T05:00:00Z | 2011-06-11T17:50:03Z | E8-30602 | 0 | 0 | 0900006480805ed6 | ||
| NCUA-2008-0056-0001 | NCUA | Organization and Operations of Federal Credit Unions; Underserved Areas (IRPS 08-2) NCUA-2008-0056 | Organization and Operations of Federal Credit Unions; Underserved Areas (IRPS 08-2) | Rule | 2008-12-02T05:00:00Z | 2008 | 12 | 2008-12-02T05:00:00Z | 2011-06-11T17:50:02Z | E8-28085 | 0 | 0 | 09000064807c8de1 | ||
| NCUA-2008-0054-0001 | NCUA | Prompt Corrective Action; Amended Definition of Post-Merger Net Worth NCUA-2008-0054 | Prompt Corrective Action; Amended Definition of Post-Merger Net Worth | Rule | 2008-12-01T05:00:00Z | 2008 | 12 | 2008-12-01T05:00:00Z | 2011-06-11T17:50:02Z | E8-28462 | 0 | 0 | 09000064807c70a3 | ||
| NCUA-2008-0052-0001 | NCUA | The Low-Income Definition NCUA-2008-0052 | The Low-Income Definition | Rule | 2008-11-26T05:00:00Z | 2008 | 11 | 2008-11-26T05:00:00Z | 2011-06-11T17:50:01Z | E8-28076 | 0 | 0 | 09000064807c1001 | ||
| NCUA-2008-0044-0001 | NCUA | Incidental Powers NCUA-2008-0044 | Incidental Powers | Rule | 2008-10-22T04:00:00Z | 2008 | 10 | 2008-10-22T04:00:00Z | 2011-06-11T17:50:00Z | E8-25128 | 0 | 0 | 0900006480772029 | ||
| NCUA-2008-0045-0001 | NCUA | Display of Official Sign; Temporary Increase in Standard Maximum Share Insurance Amount; Coverage for Custodial Loan Accounts NCUA-2008-0045 | Display of Official Sign; Temporary Increase in Standard Maximum Share Insurance Amount; Coverage for Custodial Loan Accounts | Rule | 2008-10-22T04:00:00Z | 2008 | 10 | 2008-10-22T04:00:00Z | 2008-12-23T04:59:59Z | 2011-06-11T17:50:01Z | E8-25124 | 0 | 0 | 0900006480772058 | |
| NCUA-2008-0040-0001 | NCUA | Share Insurance for Revocable Trust Accounts NCUA-2008-0040 | Share Insurance for Revocable Trust Accounts | Rule | 2008-10-14T04:00:00Z | 2008 | 10 | 2008-10-14T04:00:00Z | 2011-06-11T17:50:00Z | E8-23922 | 0 | 0 | 090000648074f1e4 | ||
| NCUA-2008-0037-0001 | NCUA | The Official Advertising Statement NCUA-2008-0037 | The Official Advertising Statement | Rule | 2008-10-01T04:00:00Z | 2008 | 10 | 2008-10-01T04:00:00Z | 2011-06-11T17:49:59Z | E8-23071 | 0 | 0 | 09000064807305a3 | ||
| NCUA-2008-0038-0001 | NCUA | Revisions for the Freedom of Information Act and Privacy Act Regulations NCUA-2008-0038 | Revisions for the Freedom of Information Act and Privacy Act Regulations | Rule | 2008-10-01T04:00:00Z | 2008 | 10 | 2008-10-01T04:00:00Z | 2011-06-11T17:49:59Z | E8-23076 | 0 | 0 | 090000648073066f | ||
| NCUA-2008-0021-0001 | NCUA | Technical Amendments NCUA-2008-0021 | Technical Amendments | Rule | 2008-05-28T04:00:00Z | 2008 | 5 | 2008-05-28T04:00:00Z | 2008-05-28T11:07:28Z | E8-11736 | 0 | 0 | 0900006480603229 | ||
| NCUA-2008-0006-0001 | NCUA | Procedures for Debt Collection NCUA-2008-0006 | Procedures for Debt Collection | Rule | 2008-03-03T05:00:00Z | 2008 | 3 | 2008-03-03T05:00:00Z | 2008-03-03T12:08:58Z | E8-03799 | 0 | 0 | 09000064803e4de2 |
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;