Files
splunk-security_content/spec/stories.spec.json
2022-02-28 12:47:14 +01:00

91 lines
1.6 KiB
JSON

{
"title": "Story",
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"id": {
"title": "Id",
"type": "string"
},
"version": {
"title": "Version",
"type": "integer"
},
"date": {
"title": "Date",
"type": "string"
},
"author": {
"title": "Author",
"type": "string"
},
"description": {
"title": "Description",
"type": "string"
},
"narrative": {
"title": "Narrative",
"type": "string"
},
"references": {
"title": "References",
"type": "array",
"items": {}
},
"tags": {
"$ref": "#/definitions/StoryTags"
}
},
"required": [
"name",
"id",
"version",
"date",
"author",
"description",
"narrative",
"references",
"tags"
],
"definitions":
{
"StoryTags": {
"title": "StoryTags",
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"analytic_story": {
"title": "Analytic Story",
"type": "string"
},
"category": {
"title": "Category",
"type": "array",
"items": {}
},
"product": {
"title": "Product",
"type": "array",
"items": {}
},
"usecase": {
"title": "Usecase",
"type": "string"
}
},
"required": [
"name",
"analytic_story",
"category",
"product",
"usecase"
]
}
}
}