changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "cert": {
+ "description": "FDIC certificate number",
+ "type": "string"
+ },
+ "financials": {
+ "description": "List of quarterly financial reports",
+ "items": {
+ "properties": {
+ "efficiency_ratio": {
+ "description": "Efficiency ratio",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "interest_income": {
+ "description": "Interest income in dollars",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "loan_losses": {
+ "description": "Loan losses in dollars",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "net_income": {
+ "description": "Net income in dollars",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "net_interest_margin": {
+ "description": "Net interest margin ratio",
+ "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"
+ ]
+ },
+ "total_assets": {
+ "description": "Total assets in dollars",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "total_deposits": {
+ "description": "Total deposits in dollars",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total_reports": {
+ "description": "Total number of financial reports",
+ "type": "number"
+ }
+ },
+ "required": [
+ "cert",
+ "total_reports",
+ "financials"
+ ],
+ "type": "object"
+}