additional_tokens.json
 1  {
 2    "$schema": "http://json-schema.org/draft-07/schema#",
 3    "type": "object",
 4    "properties": {
 5      "wallet_name": {
 6        "type": [
 7          "null",
 8          "string"
 9        ]
10      },
11      "name": {
12        "type": [
13          "null",
14          "string"
15        ]
16      },
17      "symbol": {
18        "type": [
19          "null",
20          "string"
21        ]
22      },
23      "description": {
24        "type": [
25          "null",
26          "string"
27        ]
28      },
29      "chain": {
30        "type": [
31          "null",
32          "string"
33        ]
34      },
35      "balance": {
36        "type": [
37          "null",
38          "number"
39        ]
40      },
41      "decimal": {
42        "type": [
43          "null",
44          "number"
45        ]
46      },
47      "tags": {
48        "type": [
49          "null",
50          "string"
51        ]
52      }
53    }
54  }