documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "NCUA", document_type = "Rule" and posted_year = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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-2005-0015-0002 | NCUA | Fair Credit Reporting Medical Information Regulations NCUA-2005-0015 | Fair Credit Reporting Medical Information Regulations; Correction | Rule | 2005-12-22T05:00:00Z | 2005 | 12 | 2005-12-22T05:00:00Z | 2011-06-11T17:49:46Z | 05-24370 | 0 | 0 | 09000064800fdf14 | ||
| NCUA-2005-0022-0001 | NCUA | Member Business Loans NCUA-2005-0022 | Member Business Loans | Rule | 2005-12-21T05:00:00Z | 2005 | 12 | 2005-12-21T05:00:00Z | 2006-09-02T20:29:45Z | 05-24285 | 0 | 0 | 09000064800fcc9c | ||
| NCUA-2005-0023-0001 | NCUA | Requirements for Insurance NCUA-2005-0023 | Requirements for Insurance | Rule | 2005-12-21T05:00:00Z | 2005 | 12 | 2005-12-21T05:00:00Z | 2011-06-11T17:49:46Z | 05-24284 | 0 | 0 | 09000064800fccb5 | ||
| NCUA-2005-0018-0001 | NCUA | Truth in Savings NCUA-2005-0018 | Truth in Savings | Rule | 2005-12-08T05:00:00Z | 2005 | 12 | 2005-12-08T05:00:00Z | 2006-02-07T04:59:59Z | 2011-06-11T17:49:46Z | 05-23711 | 0 | 0 | 09000064800f0768 | |
| NCUA-2005-0017-0001 | NCUA | Post-Employment Restrictions for Certain NCUA Examiners NCUA-2005-0017 | Post-Employment Restrictions for Certain NCUA Examiners | Rule | 2005-12-07T05:00:00Z | 2005 | 12 | 2005-12-07T05:00:00Z | 2005-12-18T04:59:59Z | 2006-09-02T20:29:37Z | 05-23710 | 0 | 0 | 09000064800ef45f | |
| NCUA-2005-0015-0001 | NCUA | Fair Credit Reporting Medical Information Regulations NCUA-2005-0015 | Fair Credit Reporting Medical Information Regulations | Rule | 2005-11-22T05:00:00Z | 2005 | 11 | 2005-11-22T05:00:00Z | 2011-06-11T17:49:45Z | 05-22830 | 0 | 0 | 09000064800a3e51 | ||
| NCUA-2005-0012-0001 | NCUA | Fidelity Bond and Insurance Coverage for Federal Credit Unions NCUA-2005-0012 | Fidelity Bond and Insurance Coverage for Federal Credit Unions | Rule | 2005-10-26T04:00:00Z | 2005 | 10 | 2005-10-26T04:00:00Z | 2006-09-02T20:29:28Z | 05-21326 | 0 | 0 | 09000064800970ec | ||
| NCUA-2005-0010-0001 | NCUA | Real Estate Appraisal Exceptions in Major Disaster Areas NCUA-2005-0010 | Real Estate Appraisal Exceptions in Major Disaster Areas | Rule | 2005-10-14T04:00:00Z | 2005 | 10 | 2005-10-14T04:00:00Z | 2006-09-02T20:29:25Z | 05-20583 | 0 | 0 | 0900006480092bc5 | ||
| NCUA-2005-0009-0001 | NCUA | Technical Corrections NCUA-2005-0009 | Technical Corrections | Rule | 2005-09-22T04:00:00Z | 2005 | 9 | 2005-09-22T04:00:00Z | 2006-09-02T20:29:24Z | 05-18747 | 0 | 0 | 090000648005a6cf | ||
| NCUA-2005-0007-0001 | NCUA | Audit Requirement for Credit Union Service Organizations NCUA-2005-0007 | Audit Requirement for Credit Union Service Organizations | Rule | 2005-09-21T04:00:00Z | 2005 | 9 | 2005-09-21T04:00:00Z | 2006-09-02T20:29:20Z | 05-18749 | 0 | 0 | 0900006480050091 |
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;