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
/
Copy pathx-oasis-cti-tc-assertion-ext.json
49 lines (49 loc) · 1.81 KB
/
x-oasis-cti-tc-assertion-ext.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-assertion-ext.json",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "assertion-ext",
"description": "The Assertion Extension is intended to convey an assertion about the SDO it is included in, which currently is either an Observed Data or an Indicator SDO.",
"type": "object",
"patternProperties": {
"^x-oasis-cti-tc-assertion-ext$": {
"type": "object",
"description": "The Assertion Extension is intended to convey an assertion about the SDO it is included in, which currently is either an Observed Data or an Indicator SDO.",
"properties": {
"sep_version": {
"type": "integer",
"description": "The version of this SEP."
},
"valid_from": {
"$ref": "../../../../cti-stix2-json-schemas/schemas/common/timestamp.json",
"description": "The first time at which this Assertion was considered valid."
},
"valid_until": {
"$ref": "../../../../cti-stix2-json-schemas/schemas/common/timestamp.json",
"description": "The time at which this Assertion should no longer be considered valid."
},
"source": {
"type": "string",
"description": "The source of this assertion."
},
"threat_level": {
"type": "integer",
"description": "Identifies the threat level that the creator is asserting with respect to this data."
},
"description": {
"type": "string",
"description": "A description that provides the recipient with a human-readable description of this threat level."
}
},
"anyOf": [
"valid_from",
"valid_until",
"source",
"threat_level",
"description"
],
"required": [
"sep_version"
]
}
}
}