mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
18 lines
477 B
Go
18 lines
477 B
Go
|
package model
|
||
|
|
||
|
//nolint:tagliatelle // graphQL schema
|
||
|
type CVE struct {
|
||
|
ID string `json:"Id"`
|
||
|
Description string `json:"Description"`
|
||
|
Severity string `json:"Severity"`
|
||
|
Title string `json:"Title"`
|
||
|
PackageList []Package `json:"PackageList"`
|
||
|
}
|
||
|
|
||
|
//nolint:tagliatelle // graphQL schema
|
||
|
type Package struct {
|
||
|
Name string `json:"Name"`
|
||
|
InstalledVersion string `json:"InstalledVersion"`
|
||
|
FixedVersion string `json:"FixedVersion"`
|
||
|
}
|