-
Notifications
You must be signed in to change notification settings - Fork 39
/
schema.json
70 lines (70 loc) · 1.62 KB
/
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
{
"$id": "https://ipv6-adresse.dk/schema.json",
"description": "IPv6-adresse ISP Schema",
"type": "object",
"additionalProperties": false,
"required": [
"name",
"url",
"ipv6",
"partial",
"comment"
],
"properties": {
"$schema": {
"type": "string",
"title": "Schema",
"description": "Pointer to the schema against which this document should be validated."
},
"name": {
"type": "string",
"description": "Name of ISP"
},
"url": {
"type": "string",
"description": "Website of ISP"
},
"ipv6": {
"type": "boolean",
"description": "Whether the ISP has IPv6-support"
},
"partial": {
"type": "boolean",
"description": "Whether the ISP has IPv6-support, that only applies to a segmented customer group"
},
"comment": {
"type": "string",
"description": "Comment on the IPv6 support"
},
"private": {
"type": "boolean",
"deprecated": true
},
"business": {
"type": "boolean",
"deprecated": true
},
"sources": {
"type": "array",
"description": "List of sources",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"description": "Name of source"
},
"url": {
"type": ["string", "null"],
"description": "Website of source"
},
"date": {
"type": "string",
"description": "Date of source - must be in YYYY-MM-DD format"
}
}
}
}
}
}