46 lines
833 B
JSON
46 lines
833 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/schema#",
|
||
|
"title": "Validator for misp-warninglists",
|
||
|
"id": "https://www.github.com/MISP/misp-warninglists/schema.json",
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"description": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"name": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"version": {
|
||
|
"type": "integer"
|
||
|
},
|
||
|
"list": {
|
||
|
"type": "array",
|
||
|
"uniqueItems": true,
|
||
|
"items": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
},
|
||
|
"type": {
|
||
|
"type": "array",
|
||
|
"uniqueItems": true,
|
||
|
"items": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
},
|
||
|
"matching_attributes": {
|
||
|
"type": "array",
|
||
|
"uniqueItems": true,
|
||
|
"items": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"list",
|
||
|
"matching_attributes",
|
||
|
"description",
|
||
|
"version",
|
||
|
"name"
|
||
|
]
|
||
|
}
|