changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "institutions": {
+ "description": "List of institutions matching the search",
+ "items": {
+ "properties": {
+ "cert": {
+ "description": "FDIC certificate number",
+ "type": [
+ "string",
+ "number",
+ "null"
+ ]
+ },
+ "city": {
+ "description": "City location",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Institution name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "net_income": {
+ "description": "Net income in dollars",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "report_date": {
+ "description": "Report date",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "roa": {
+ "description": "Return on assets ratio",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "roe": {
+ "description": "Return on equity ratio",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "state": {
+ "description": "State code",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "total_assets": {
+ "description": "Total assets in dollars",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "total_deposits": {
+ "description": "Total deposits in dollars",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "query": {
+ "description": "Search query string",
+ "type": "string"
+ },
+ "total_results": {
+ "description": "Total number of matching institutions",
+ "type": "number"
+ }
+ },
+ "required": [
+ "query",
+ "total_results",
+ "institutions"
+ ],
+ "type": "object"
+}