-
Notifications
You must be signed in to change notification settings - Fork 1
/
chain-blacklist.schema.json
44 lines (44 loc) · 1.06 KB
/
chain-blacklist.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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://example.com/chain-blacklist.schema.json",
"title": "Chains List",
"description": "A list of blacklisted chains",
"type": "array",
"items": [
{
"type": "object",
"properties": {
"chainId": {
"type": "string"
},
"submissionDate": {
"type": "string"
},
"userNotes": {
"type": "array",
"items": [
{
"type": "object",
"properties": {
"userName": {
"type": "string"
},
"userNote": {
"type": "string"
},
"noteDate": {
"type": "string"
}
},
"required": ["userName", "userNote", "noteDate"]
}
]
},
"threatLevel": {
"type": "integer"
}
},
"required": ["chainId", "submissionDate", "userNotes", "threatLevel"]
}
]
}