documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "NCUA", document_type = "Rule" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date (date), comment_start_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-2014-0043-0001 | NCUA | Appraisals; Availability to Applicants and Requirements for Transactions Involving an Existing Extension of Credit NCUA-2014-0043 | Appraisals; Availability to Applicants and Requirements for Transactions Involving an Existing Extension of Credit | Rule | 2014-12-19T05:00:00Z | 2014 | 12 | 2014-12-19T05:00:00Z | 2014-12-19T14:23:45Z | 2014-29635 | 0 | 0 | 0900006481985dfe | ||
| NCUA-2014-0034-0001 | NCUA | Unfair or Deceptive Acts or Practices NCUA-2014-0034 | Unfair or Deceptive Acts or Practices | Rule | 2014-10-03T04:00:00Z | 2014 | 10 | 2014-10-03T04:00:00Z | 2014-10-03T12:35:17Z | 2014-22715 | 0 | 0 | 09000064818a67d5 | ||
| NCUA-2014-0027-0001 | NCUA | Voluntary Liquidation NCUA-2014-0027 | Voluntary Liquidation | Rule | 2014-06-26T04:00:00Z | 2014 | 6 | 2014-06-26T04:00:00Z | 2014-06-26T13:21:00Z | 2014-14885 | 0 | 0 | 090000648176a56e | ||
| NCUA-2014-0016-0001 | NCUA | Capital Planning and Stress Testing NCUA-2014-0016 | Capital Planning and Stress Testing | Rule | 2014-04-30T04:00:00Z | 2014 | 4 | 2014-04-30T04:00:00Z | 2014-04-30T13:12:24Z | 2014-09814 | 0 | 0 | 09000064816d6cb5 | ||
| NCUA-2014-0009-0001 | NCUA | Golden Parachute and Indemnification Payments; Technical Corrections NCUA-2014-0009 | Golden Parachute and Indemnification Payments; Technical Corrections | Rule | 2014-03-06T05:00:00Z | 2014 | 3 | 2014-03-06T05:00:00Z | 2014-03-06T13:25:49Z | 2014-04918 | 0 | 0 | 090000648160582a | ||
| NCUA-2014-0004-0001 | NCUA | Derivatives NCUA-2014-0004 | Derivatives | Rule | 2014-01-31T05:00:00Z | 2014 | 1 | 2014-01-31T05:00:00Z | 2014-01-31T14:14:03Z | 2014-01703 | 0 | 0 | 09000064815394b1 |
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;