-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpatch-minimal.json
More file actions
51 lines (51 loc) · 1.21 KB
/
patch-minimal.json
File metadata and controls
51 lines (51 loc) · 1.21 KB
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
{
"components": {
"schemas": {
"Vulnerability": {
"properties": {
"findingAttribution": {
"$ref": "#/components/schemas/FindingAttrib"
}
}
},
"FindingAttrib": {
"type": "object",
"properties": {
"attributedOn": {
"type": "integer",
"description": "UNIX epoch timestamp in milliseconds",
"format": "int64"
},
"analyzerIdentity": {
"type": "string",
"enum": [
"INTERNAL_ANALYZER",
"OSSINDEX_ANALYZER",
"NPM_AUDIT_ANALYZER",
"VULNDB_ANALYZER",
"SNYK_ANALYZER",
"TRIVY_ANALYZER",
"NONE"
]
},
"component": {
"$ref": "#/components/schemas/Component"
},
"vulnerability": {
"$ref": "#/components/schemas/Vulnerability"
},
"alternateIdentifier": {
"type": "string"
},
"referenceUrl": {
"type": "string"
},
"uuid": {
"type": "string",
"format": "uuid"
}
}
}
}
}
}