2018-03-12 15:29:18 +01:00
|
|
|
{
|
|
|
|
"$schema": "http://json-schema.org/schema#",
|
|
|
|
"title": "BGP Ranking NG module",
|
|
|
|
"id": "https://www.github.com/CIRCL/bgpranking-ng/modules.json",
|
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": false,
|
|
|
|
"properties": {
|
|
|
|
"url": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"vendor": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"name": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"impact": {
|
|
|
|
"type": "number"
|
|
|
|
},
|
|
|
|
"parser": {
|
|
|
|
"type": "string"
|
2018-07-06 15:42:29 +02:00
|
|
|
},
|
|
|
|
"tags": {
|
|
|
|
"type": "array",
|
|
|
|
"uniqueItems": true,
|
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
2018-03-12 15:29:18 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"name",
|
|
|
|
"vendor",
|
|
|
|
"impact"
|
|
|
|
]
|
|
|
|
}
|