documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "FDIC", document_type = "Rule" and posted_year = 2013 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FDIC-2013-0156-0001 | FDIC | Community Reinvestment Act Regulations | Rule | 2013-12-30T05:00:00Z | 2013 | 12 | 2013-12-30T05:00:00Z | 2013-12-30T14:09:46Z | 2013-30960 | 0 | 0 | 09000064814e18f1 | |||
| FDIC-2013-0151-0001 | FDIC | Removal of Transferred Office of Thrift Supervision Regulations Regarding Recordkeeping, etc. | Rule | 2013-12-19T05:00:00Z | 2013 | 12 | 2013-12-19T05:00:00Z | 2013-12-19T15:09:22Z | 2013-29786 | 0 | 0 | 09000064814cb5f8 | |||
| FDIC-2013-0140-0001 | FDIC | Policy Statements: Principles for Development and Distribution of Annual Stress Test | Rule | 2013-12-03T05:00:00Z | 2013 | 12 | 2013-12-03T05:00:00Z | 2013-12-03T14:09:05Z | 2013-28608 | 0 | 0 | 09000064814a3de0 | |||
| FDIC-2013-0118-0001 | FDIC | Regulatory Capital Rules: Regulatory Capital, Implementation of Basel III, Capital Adequacy, Transition Provisions, Prompt Corrective Action, Standardized Approach for Risk-weighted Assets, Market Discipline and Disclosure Requirements, etc. | Rule | 2013-10-22T04:00:00Z | 2013 | 10 | 2013-10-22T04:00:00Z | 2013-10-22T13:25:54Z | 2013-24532 | 0 | 0 | 0900006481458929 | |||
| FDIC-2013-0107-0001 | FDIC | Deposit Insurance: Definition of Insured Deposit | Rule | 2013-09-13T04:00:00Z | 2013 | 9 | 2013-09-13T04:00:00Z | 2013-09-13T13:59:40Z | 2013-22340 | 0 | 0 | 0900006481411ab0 | |||
| FDIC-2013-0102-0001 | FDIC | Regulatory Capital: Implementation of Basel III, Capital Adequacy, Transition Provisions, Prompt Corrective Action, etc. | Rule | 2013-09-10T04:00:00Z | 2013 | 9 | 2013-09-10T04:00:00Z | 2013-11-13T04:59:59Z | 2013-09-10T13:13:35Z | 2013-20536 | 0 | 0 | 09000064813ebbbc | ||
| FDIC-2013-0098-0001 | FDIC | Records of Failed Insured Depository Institutions | Rule | 2013-09-04T04:00:00Z | 2013 | 9 | 2013-09-04T04:00:00Z | 2013-09-04T13:04:58Z | 2013-21389 | 0 | 0 | 09000064813d8cd3 | |||
| FDIC-2013-0093-0001 | FDIC | Regulations Transferred from the Office of Thrift Supervision; CFR Correction | Rule | 2013-08-23T04:00:00Z | 2013 | 8 | 2013-08-23T04:00:00Z | 2013-08-23T13:33:06Z | 2013-20707 | 0 | 0 | 09000064813c1267 | |||
| FDIC-2013-0061-0001 | FDIC | Definition of Predominantly Engaged in Activities that are Financial in Nature or Incidental Thereto | Rule | 2013-06-10T04:00:00Z | 2013 | 6 | 2013-06-10T04:00:00Z | 2013-06-10T13:09:13Z | 2013-13595 | 0 | 0 | 09000064813158a2 | |||
| FDIC-2013-0038-0001 | FDIC | Statements of Policy: Development and Review of Regulations and Policies | Rule | 2013-04-17T04:00:00Z | 2013 | 4 | 2013-04-17T04:00:00Z | 2013-04-17T14:45:50Z | 2013-08986 | 0 | 0 | 0900006481298662 |
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;