-
Notifications
You must be signed in to change notification settings - Fork 1
/
site-blacklist.schema.json
45 lines (44 loc) · 1.13 KB
/
site-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
45
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://example.com/site-blacklist.schema.json",
"title": "URL List",
"description": "A list of blacklisted URLs",
"type": "array",
"items": [
{
"type": "object",
"properties": {
"url": {
"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": ["url", "submissionDate", "userNotes", "threatLevel"]
}
]
}