/ source-etherscan / source_etherscan / schemas / token_balance.json
token_balance.json
 1  {
 2    "$schema": "http://json-schema.org/draft-07/schema#",
 3    "title": "NativeBalance",
 4    "type": "object",
 5    "additionalProperties": false,
 6    "properties": {
 7      "timestamp": {
 8        "type": "string",
 9        "format": "date-time",
10        "description": "Timestamp when the balance was fetched"
11      },
12      "wallet_address": {
13        "type": "string",
14        "description": "Ethereum wallet address"
15      },
16      "wallet_name": {
17        "type": ["string", "null"],
18        "description": "Human-readable wallet name"
19      },
20      "tags": {
21        "type": ["array", "null"],
22        "items": {
23          "type": "string"
24        },
25        "description": "Wallet tags"
26      },
27      "amount": {
28        "type": "string",
29        "description": "Balance in smallest unit (wei)"
30      },
31      "token_symbol": {
32        "type": "string",
33        "description": "Token symbol"
34      },
35      "token_address": {
36        "type": "string",
37        "description": "Token address"
38      },
39      "token_decimal": {
40        "type": "integer",
41        "description": "Number of decimals for the token"
42      },
43      "chain_id": {
44        "type": "integer",
45        "description": "Blockchain chain ID"
46      }
47    }
48  }