github.com/status-im/status-go@v1.1.0/integration-tests/schemas/wallet_getTokenList (about) 1 { 2 "$schema": "http://json-schema.org/schema#", 3 "properties": { 4 "id": { 5 "type": "string" 6 }, 7 "jsonrpc": { 8 "type": "string" 9 }, 10 "result": { 11 "properties": { 12 "data": { 13 "items": { 14 "properties": { 15 "name": { 16 "type": "string" 17 }, 18 "source": { 19 "type": "string" 20 }, 21 "tokens": { 22 "items": { 23 "properties": { 24 "address": { 25 "type": "string" 26 }, 27 "chainId": { 28 "type": "integer" 29 }, 30 "decimals": { 31 "type": "integer" 32 }, 33 "name": { 34 "type": "string" 35 }, 36 "pegSymbol": { 37 "type": "string" 38 }, 39 "symbol": { 40 "type": "string" 41 }, 42 "tokenListId": { 43 "type": "string" 44 }, 45 "verified": { 46 "type": "boolean" 47 } 48 }, 49 "required": [ 50 "address", 51 "chainId", 52 "decimals", 53 "name", 54 "pegSymbol", 55 "symbol", 56 "tokenListId", 57 "verified" 58 ], 59 "type": "object" 60 }, 61 "type": "array" 62 }, 63 "version": { 64 "type": "string" 65 } 66 }, 67 "required": [ 68 "name", 69 "source", 70 "tokens", 71 "version" 72 ], 73 "type": "object" 74 }, 75 "type": "array" 76 }, 77 "updatedAt": { 78 "type": "integer" 79 } 80 }, 81 "required": [ 82 "data", 83 "updatedAt" 84 ], 85 "type": "object" 86 } 87 }, 88 "required": [ 89 "id", 90 "jsonrpc", 91 "result" 92 ], 93 "type": "object" 94 }