chg: [misp-galaxy-format] updated galaxy schema

pull/21/head
Alexandre Dulaunoy 2019-02-15 09:20:43 +01:00
parent 1b8a0fcbf3
commit 811ec18053
No known key found for this signature in database
GPG Key ID: 09E2CD4944E6CBCD
1 changed files with 45 additions and 0 deletions

View File

@ -239,6 +239,51 @@ Example use of the cfr-suspected-victims, cfr-suspected-state-sponsor, cfr-type-
The JSON Schema [@?JSON-SCHEMA] below defines the overall MISP galaxy formats. The main format is the MISP galaxy format used for the clusters.
## MISP galaxy format - galaxy
~~~~
{
"$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"
]
}
~~~~
## MISP galaxy format - clusters
~~~~