forked from bitsongofficial/assetlists
-
Notifications
You must be signed in to change notification settings - Fork 0
/
extragauge.schema.json
90 lines (90 loc) · 2.79 KB
/
extragauge.schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "http://example.com/example.json",
"type": "object",
"title": "Extra Gauge In Pool",
"description": "The root schema comprises the entire JSON document.",
"default": {},
"examples": [
{
"644": [
{
"gaugeId": "000",
"denom": "ibc/3BB16ABE9D0AE03672C82583B667248479D9F11B0EC75DE5CD64E13CDD86EF1F"
},
{
"gaugeId": "001",
"denom": "ibc/3BB16ABE9D0AE03672C82583B667248479D9F11B0EC75DE5CD64E13CDD86EF1F"
},
{
"gaugeId": "002",
"denom": "ibc/3BB16ABE9D0AE03672C82583B667248479D9F11B0EC75DE5CD64E13CDD86EF1F"
}
]
}
],
"required": ["644"],
"properties": {
"644": {
"$id": "#/properties/644",
"type": "array",
"title": "The 644 schema",
"description": "An explanation about the purpose of this instance.",
"default": [],
"examples": [
[
{
"gaugeId": "000",
"denom": "ibc/3BB16ABE9D0AE03672C82583B667248479D9F11B0EC75DE5CD64E13CDD86EF1F"
},
{
"gaugeId": "001",
"denom": "ibc/3BB16ABE9D0AE03672C82583B667248479D9F11B0EC75DE5CD64E13CDD86EF1F"
}
]
],
"additionalItems": true,
"items": {
"$id": "#/properties/644/items",
"anyOf": [
{
"$id": "#/properties/644/items/anyOf/0",
"type": "object",
"title": "The first anyOf schema",
"description": "An explanation about the purpose of this instance.",
"default": {},
"examples": [
{
"gaugeId": "000",
"denom": "ibc/3BB16ABE9D0AE03672C82583B667248479D9F11B0EC75DE5CD64E13CDD86EF1F"
}
],
"required": ["gaugeId", "denom"],
"properties": {
"gaugeId": {
"$id": "#/properties/644/items/anyOf/0/properties/gaugeId",
"type": "string",
"title": "The gaugeId schema",
"description": "An explanation about the purpose of this instance.",
"default": "",
"examples": ["000"]
},
"denom": {
"$id": "#/properties/644/items/anyOf/0/properties/denom",
"type": "string",
"title": "The denom schema",
"description": "An explanation about the purpose of this instance.",
"default": "",
"examples": [
"ibc/3BB16ABE9D0AE03672C82583B667248479D9F11B0EC75DE5CD64E13CDD86EF1F"
]
}
},
"additionalProperties": true
}
]
}
}
},
"additionalProperties": true
}