changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "failures": {
+ "description": "List of bank failures",
+ "items": {
+ "properties": {
+ "acquiring_institution": {
+ "description": "Institution that acquired the failed bank",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "cert": {
+ "description": "FDIC certificate number",
+ "type": [
+ "string",
+ "number",
+ "null"
+ ]
+ },
+ "city": {
+ "description": "City location",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "failure_date": {
+ "description": "Date of bank failure",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "fund": {
+ "description": "Insurance fund type",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Bank name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "state": {
+ "description": "State code",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "total_assets": {
+ "description": "Total assets at time of failure",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "total_deposits": {
+ "description": "Total deposits at time of failure",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "filters": {
+ "properties": {
+ "end_date": {
+ "description": "End date filter applied",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "start_date": {
+ "description": "Start date filter applied",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "total_failures": {
+ "description": "Total number of bank failures in result set",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total_failures",
+ "filters",
+ "failures"
+ ],
+ "type": "object"
+}