github.com/status-im/status-go@v1.1.0/integration-tests/schemas/wallet_getCryptoOnRamps (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 "items": { 12 "properties": { 13 "description": { 14 "type": "string" 15 }, 16 "fees": { 17 "type": "string" 18 }, 19 "hostname": { 20 "type": "string" 21 }, 22 "logoUrl": { 23 "type": "string" 24 }, 25 "name": { 26 "type": "string" 27 }, 28 "params": { 29 "type": "null" 30 }, 31 "recurrentSiteUrl": { 32 "type": "string" 33 }, 34 "siteUrl": { 35 "type": "string" 36 }, 37 "supportedChainIds": { 38 "items": { 39 "type": "integer" 40 }, 41 "type": "array" 42 } 43 }, 44 "required": [ 45 "description", 46 "fees", 47 "hostname", 48 "logoUrl", 49 "name", 50 "params", 51 "recurrentSiteUrl", 52 "siteUrl", 53 "supportedChainIds" 54 ], 55 "type": "object" 56 }, 57 "type": "array" 58 } 59 }, 60 "required": [ 61 "id", 62 "jsonrpc", 63 "result" 64 ], 65 "type": "object" 66 }