bank_balance.json
1 { 2 "$schema": "http://json-schema.org/draft-07/schema#", 3 "type": "object", 4 "properties": { 5 "account_id": { 6 "type": [ 7 "null", 8 "string" 9 ] 10 }, 11 "bank_name": { 12 "type": [ 13 "null", 14 "string" 15 ] 16 }, 17 "ccy": { 18 "type": [ 19 "null", 20 "string" 21 ] 22 }, 23 "tier": { 24 "type": [ 25 "null", 26 "string" 27 ] 28 }, 29 "volatility": { 30 "type": [ 31 "null", 32 "string" 33 ] 34 }, 35 "asset_type": { 36 "type": [ 37 "null", 38 "string" 39 ] 40 }, 41 "account_owner": { 42 "type": [ 43 "null", 44 "string" 45 ] 46 }, 47 "balance_date": { 48 "type": [ 49 "null", 50 "string" 51 ] 52 }, 53 "balance": { 54 "type": [ 55 "null", 56 "number" 57 ] 58 }, 59 "balance_usd": { 60 "type": [ 61 "null", 62 "number" 63 ] 64 } 65 66 } 67 }