mirror of
https://github.com/MISP/misp-galaxy.git
synced 2024-11-22 23:07:19 +00:00
73 lines
1.3 KiB
JSON
73 lines
1.3 KiB
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/schema#",
|
||
|
"title": "Validator for misp-galaxies",
|
||
|
"id": "https://www.github.com/MISP/misp-galaxies/schema.json",
|
||
|
"type": "object",
|
||
|
"additionalProperties": false,
|
||
|
"properties": {
|
||
|
"description": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"type": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"version": {
|
||
|
"type": "integer"
|
||
|
},
|
||
|
"name": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"uuid": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"source": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"values": {
|
||
|
"type": "array",
|
||
|
"uniqueItems": true,
|
||
|
"items": {
|
||
|
"type": "object",
|
||
|
"additionalProperties": false,
|
||
|
"properties": {
|
||
|
"description": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"value": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"type": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"Possible Issues": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"meta": {
|
||
|
"type": "object"
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"value"
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"authors": {
|
||
|
"type": "array",
|
||
|
"uniqueItems": true,
|
||
|
"items": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"description",
|
||
|
"type",
|
||
|
"version",
|
||
|
"name",
|
||
|
"uuid",
|
||
|
"values",
|
||
|
"authors",
|
||
|
"source"
|
||
|
]
|
||
|
}
|