FDIC · Schema
FDIC Financial Report
Quarterly financial information for an FDIC-insured institution from the FDIC BankFind Suite API.
BankingFinanceGovernmentFDICFinancial DataBank DataRegulatory
Properties
| Name | Type | Description |
|---|---|---|
| CERT | integer | FDIC certificate number uniquely identifying the institution. |
| REPDTE | string | Report date for the quarterly financial data (YYYYMMDD format). |
| ASSET | number | Total assets (in thousands of dollars). |
| DEP | number | Total deposits (in thousands of dollars). |
| INTINC | number | Total interest income (in thousands of dollars). |
| EINTEXP | number | Total interest expense (in thousands of dollars). |
| NIM | number | Net interest margin. |
| NONII | number | Total noninterest income (in thousands of dollars). |
| NONIX | number | Total noninterest expense (in thousands of dollars). |
| NETINC | number | Net income (in thousands of dollars). |
| ROE | number | Return on equity percentage. |
| ROA | number | Return on assets percentage. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/fdic/main/json-schema/fdic-financial-schema.json",
"title": "FDIC Financial Report",
"description": "Quarterly financial information for an FDIC-insured institution from the FDIC BankFind Suite API.",
"type": "object",
"properties": {
"CERT": {
"type": "integer",
"description": "FDIC certificate number uniquely identifying the institution."
},
"REPDTE": {
"type": "string",
"description": "Report date for the quarterly financial data (YYYYMMDD format)."
},
"ASSET": {
"type": "number",
"description": "Total assets (in thousands of dollars)."
},
"DEP": {
"type": "number",
"description": "Total deposits (in thousands of dollars)."
},
"INTINC": {
"type": "number",
"description": "Total interest income (in thousands of dollars)."
},
"EINTEXP": {
"type": "number",
"description": "Total interest expense (in thousands of dollars)."
},
"NIM": {
"type": "number",
"description": "Net interest margin."
},
"NONII": {
"type": "number",
"description": "Total noninterest income (in thousands of dollars)."
},
"NONIX": {
"type": "number",
"description": "Total noninterest expense (in thousands of dollars)."
},
"NETINC": {
"type": "number",
"description": "Net income (in thousands of dollars)."
},
"ROE": {
"type": "number",
"description": "Return on equity percentage."
},
"ROA": {
"type": "number",
"description": "Return on assets percentage."
}
}
}