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-grouping.json
60 lines (60 loc) · 1.97 KB
/
x-oasis-cti-tc-grouping.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
50
51
52
53
54
55
56
57
58
59
60
{
"id": "x-oasis-cti-tc-grouping.json",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "grouping",
"description": "A Grouping is a set of references to STIX context that the object creator wishes to treat as a distinct entity with shared context.",
"type": "object",
"allOf": [
{
"$ref": "../../../../cti-stix2-json-schemas/schemas/common/core.json"
},
{
"properties": {
"type": {
"type": "string",
"description": "The type of this object, which MUST be the literal `x-oasis-cti-tc-grouping`.",
"enum": [
"x-oasis-cti-tc-grouping"
]
},
"id": {
"title": "id",
"pattern": "^x-oasis-cti-tc-grouping--"
},
"sep_version": {
"type": "integer",
"description": "The version of this SEP."
},
"name": {
"type": "string",
"description": "A name used to identify the Grouping."
},
"description": {
"type": "string",
"description": "A description that provides more details and context about the Grouping, potentially including its purpose and its key characteristics."
},
"context": {
"type": "array",
"description": "A description that provides more details and context about the Grouping, potentially including its purpose and its key characteristics. This is an open vocabulary and values **SHOULD** come from the `grouping-context-ov` vocabulary.",
"items": {
"type": "string"
},
"minItems": 1
},
"object_refs": {
"type": "array",
"description": "Specifies the STIX Objects that are referred to by this Grouping.",
"items": {
"$ref": "../../../../cti-stix2-json-schemas/schemas/common/identifier.json"
},
"minItems": 1
}
}
}
],
"required": [
"name",
"context",
"sep_version"
]
}