mirror of https://github.com/MISP/misp-objects
31 lines
548 B
JSON
31 lines
548 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/schema#",
|
||
|
"title": "Validator for misp-objects",
|
||
|
"id": "https://www.github.com/MISP/misp-objects/schema.json",
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"meta-category": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"name": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"description": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"version": {
|
||
|
"type": "integer"
|
||
|
},
|
||
|
"attributes": {
|
||
|
"type": "object"
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"attributes",
|
||
|
"version",
|
||
|
"description",
|
||
|
"meta-category",
|
||
|
"name"
|
||
|
]
|
||
|
}
|