misp-warninglists/schema.json

46 lines
839 B
JSON
Raw Normal View History

2017-02-12 21:01:36 +01:00
{
"$schema": "http://json-schema.org/schema#",
"title": "Validator for misp-warninglists",
"id": "https://www.github.com/MISP/misp-warninglists/schema.json",
"type": "object",
"additionalProperties": false,
2017-02-12 21:01:36 +01:00
"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",
"description",
"version",
"name"
]
}