mirror of
https://github.com/MISP/misp-galaxy.git
synced 2024-11-22 23:07:19 +00:00
fix: [JSON schema] related element is an array of JSON objects
This commit is contained in:
parent
cff9ec6905
commit
7d4ff9730d
1 changed files with 4 additions and 1 deletions
|
@ -40,8 +40,11 @@
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"related": {
|
"related": {
|
||||||
"type": "object",
|
"type": "array",
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
|
"items": {
|
||||||
|
"type": "object"
|
||||||
|
},
|
||||||
"properties": {
|
"properties": {
|
||||||
"dest-uuid": {
|
"dest-uuid": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
|
Loading…
Reference in a new issue