documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
13 rows where agency_id = "FDIC", document_type = "Rule" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FDIC-2012-0167-0001 | FDIC | Community Reinvestment Act Regulations | Rule | 2012-12-21T05:00:00Z | 2012 | 12 | 2012-12-21T05:00:00Z | 2012-12-21T14:34:39Z | 2012-30775 | 0 | 0 | 0900006481195505 | |||
| FDIC-2012-0160-0001 | FDIC | Rules of Practice and Procedure | Rule | 2012-12-17T05:00:00Z | 2012 | 12 | 2012-12-17T05:00:00Z | 2012-12-17T14:24:47Z | 2012-30251 | 0 | 0 | 090000648118f4ec | |||
| FDIC-2012-0148-0001 | FDIC | Policy Statement on the Principles for Development and Distribution of Annual Stress Test | Rule | 2012-11-20T05:00:00Z | 2012 | 11 | 2012-11-20T05:00:00Z | 2013-01-23T04:59:59Z | 2012-11-20T14:21:15Z | 2012-28104 | 0 | 0 | 090000648116ead3 | ||
| FDIC-2012-0136-0001 | FDIC | Assessments, Large Bank Pricing | Rule | 2012-10-31T04:00:00Z | 2012 | 10 | 2012-10-31T04:00:00Z | 2012-10-31T12:29:38Z | 2012-25943 | 0 | 0 | 0900006481156408 | |||
| FDIC-2012-0128-0001 | FDIC | Enforcement of Subsidiary and Affiliate Contracts by the FDIC as Receiver of a Covered Financial Company | Rule | 2012-10-16T04:00:00Z | 2012 | 10 | 2012-10-16T04:00:00Z | 2012-10-16T13:13:19Z | 2012-25315 | 0 | 0 | 0900006481142c3b | |||
| FDIC-2012-0127-0001 | FDIC | Annual Stress Test | Rule | 2012-10-15T04:00:00Z | 2012 | 10 | 2012-10-15T04:00:00Z | 2012-10-15T12:47:32Z | 2012-25194 | 0 | 0 | 0900006481140c84 | |||
| FDIC-2012-0101-0001 | FDIC | Risk-Based Capital Guidelines: Market Risk | Rule | 2012-08-30T04:00:00Z | 2012 | 8 | 2012-08-30T04:00:00Z | 2012-08-30T13:02:56Z | 2012-16759 | 0 | 0 | 09000064810fb099 | |||
| FDIC-2012-0079-0001 | FDIC | Corporate Debt Securities: Permissible Investments for Federal and State Savings Associations | Rule | 2012-07-24T04:00:00Z | 2012 | 7 | 2012-07-24T04:00:00Z | 2012-07-24T12:56:42Z | 2012-17860 | 0 | 0 | 09000064810ac290 | |||
| FDIC-2012-0080-0001 | FDIC | Final Guidance; Availability, etc.: Due Diligence Requirements for Savings Associations in Determining Whether a Corporate Debt Security is Eligible for Investment | Rule | 2012-07-24T04:00:00Z | 2012 | 7 | 2012-07-24T04:00:00Z | 2012-07-24T12:57:08Z | 2012-17854 | 0 | 0 | 09000064810ac319 | |||
| FDIC-2012-0066-0001 | FDIC | Calculation of Maximum Obligation Limitation | Rule | 2012-06-22T04:00:00Z | 2012 | 6 | 2012-06-22T04:00:00Z | 2012-06-22T13:13:46Z | 2012-15310 | 0 | 0 | 090000648105f508 | |||
| FDIC-2012-0053-0001 | FDIC | Procedures for Monitoring Bank Secrecy Act Compliance and Fair Credit Reporting; Correction | Rule | 2012-05-23T04:00:00Z | 2012 | 5 | 2012-05-23T04:00:00Z | 2012-05-23T12:37:32Z | 2012-12495 | 0 | 0 | 0900006481019e67 | |||
| FDIC-2012-0041-0001 | FDIC | Mutual Insurance Holding Company Treated as Insurance Company | Rule | 2012-04-30T04:00:00Z | 2012 | 4 | 2012-04-30T04:00:00Z | 2012-04-30T12:35:27Z | 2012-10146 | 0 | 0 | 0900006481000d6c | |||
| FDIC-2012-0007-0001 | FDIC | Resolution Plans Required for Insured Depository Institutions with $50 Billion or More in Total Assets | Rule | 2012-01-23T05:00:00Z | 2012 | 1 | 2012-01-23T05:00:00Z | 2012-01-23T13:30:12Z | 2012-01136 | 0 | 0 | 0900006480fa12df |
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;