FDIC · Schema
FDIC Institution
A financial institution record from the FDIC BankFind Suite API.
BankingFinanceGovernmentFDICFinancial DataBank DataRegulatory
Properties
| Name | Type | Description |
|---|---|---|
| CERT | integer | FDIC certificate number uniquely identifying each institution. |
| NAME | string | The legal name of the financial institution. |
| CITY | string | City in which the institution's headquarters is located. |
| STNAME | string | Full name of the state in which the institution is headquartered. |
| STALP | string | Two-letter abbreviation of the state in which the institution is headquartered. |
| ZIP | string | ZIP code of the institution's headquarters. |
| COUNTY | string | County where the institution is headquartered. |
| ACTIVE | integer | Whether the institution is active (1) or not (0). |
| ASSET | number | Total assets held by the institution (in thousands of dollars). |
| DEP | number | Total deposits held by the institution (in thousands of dollars). |
| DEPDOM | number | Domestic deposits (in thousands of dollars). |
| NETINC | number | Net income of the institution (in thousands of dollars). |
| ROE | number | Return on equity percentage. |
| ROA | number | Return on assets percentage. |
| OFFICES | integer | Number of offices/branches operated by the institution. |
| OFFDOM | integer | Number of domestic offices. |
| CBSA | string | Core Based Statistical Area name where the institution is located. |
| DATEUPDT | string | Date the record was last updated. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/fdic/main/json-schema/fdic-institution-schema.json",
"title": "FDIC Institution",
"description": "A financial institution record from the FDIC BankFind Suite API.",
"type": "object",
"properties": {
"CERT": {
"type": "integer",
"description": "FDIC certificate number uniquely identifying each institution."
},
"NAME": {
"type": "string",
"description": "The legal name of the financial institution."
},
"CITY": {
"type": "string",
"description": "City in which the institution's headquarters is located."
},
"STNAME": {
"type": "string",
"description": "Full name of the state in which the institution is headquartered."
},
"STALP": {
"type": "string",
"description": "Two-letter abbreviation of the state in which the institution is headquartered."
},
"ZIP": {
"type": "string",
"description": "ZIP code of the institution's headquarters."
},
"COUNTY": {
"type": "string",
"description": "County where the institution is headquartered."
},
"ACTIVE": {
"type": "integer",
"description": "Whether the institution is active (1) or not (0)."
},
"ASSET": {
"type": "number",
"description": "Total assets held by the institution (in thousands of dollars)."
},
"DEP": {
"type": "number",
"description": "Total deposits held by the institution (in thousands of dollars)."
},
"DEPDOM": {
"type": "number",
"description": "Domestic deposits (in thousands of dollars)."
},
"NETINC": {
"type": "number",
"description": "Net income of the institution (in thousands of dollars)."
},
"ROE": {
"type": "number",
"description": "Return on equity percentage."
},
"ROA": {
"type": "number",
"description": "Return on assets percentage."
},
"OFFICES": {
"type": "integer",
"description": "Number of offices/branches operated by the institution."
},
"OFFDOM": {
"type": "integer",
"description": "Number of domestic offices."
},
"CBSA": {
"type": "string",
"description": "Core Based Statistical Area name where the institution is located."
},
"DATEUPDT": {
"type": "string",
"format": "date",
"description": "Date the record was last updated."
}
}
}