This repository has been archived by the owner on Jun 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
template.json
49 lines (49 loc) · 1.55 KB
/
template.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"id": "x-oasis-cti-tc-silver-bullet.json",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "silver-bullet",
"description": "A STIX Silver Bullet solves all the world's problems.",
"type": "object",
"allOf": [
{
"$ref": "../../../../cti-stix2-json-schemas/schemas/common/cyber-observable-core.json"
},
{
"properties": {
"type": {
"type": "string",
"description": "The type of this object, which MUST be the literal `x-oasis-cti-tc-silver-bullet`.",
"enum": ["x-oasis-cti-tc-silver-bullet"]
},
"sep_version": {
"type": "integer",
"description": "The version of this SEP."
},
"id": {
"title": "id",
"pattern": "^x-oasis-cti-tc-silver-bullet--"
},
"aliases": {
"type": "array",
"description": "Alternative names used to identify this Silver Bullet.",
"items": {
"type": "string"
},
"minItems": 1
},
"first_proposed": {
"$ref": "../../../../cti-stix2-json-schemas/schemas/common/timestamp.json",
"description": "The time that this Silver Bullet was first proposed."
},
"world_problem_solved": {
"$ref": "../../../../cti-stix2-json-schemas/schemas/common/timestamp.json",
"description": "The time that this Silver Bullet was implemented globally and the major world problem solved."
}
}
}
],
"required": [
"world_problem_solved",
"sep_version"
]
}