mirror of https://github.com/MISP/misp-galaxy
41 lines
722 B
JSON
41 lines
722 B
JSON
{
|
|
"$schema": "http://json-schema.org/schema#",
|
|
"title": "Validator for misp-galaxies - Galaxies",
|
|
"id": "https://www.github.com/MISP/misp-galaxies/schema_galaxies.json",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"description": {
|
|
"type": "string"
|
|
},
|
|
"type": {
|
|
"type": "string"
|
|
},
|
|
"version": {
|
|
"type": "integer"
|
|
},
|
|
"name": {
|
|
"type": "string"
|
|
},
|
|
"icon": {
|
|
"type": "string"
|
|
},
|
|
"uuid": {
|
|
"type": "string"
|
|
},
|
|
"namespace": {
|
|
"type": "string"
|
|
},
|
|
"kill_chain_order": {
|
|
"type": "object"
|
|
}
|
|
},
|
|
"required": [
|
|
"description",
|
|
"type",
|
|
"version",
|
|
"name",
|
|
"uuid"
|
|
]
|
|
}
|