1
0
Fork 0
mirror of https://github.com/gocsaf/csaf.git synced 2025-12-22 11:55:40 +01:00
gocsaf/cmd/csaf_checker/report.go
2021-12-09 11:28:27 +01:00

16 lines
335 B
Go

package main
type requirement struct {
Num int `json:"num"`
Description string `json:"description"`
Messages []string `json:"messages"`
}
type domain struct {
Name string `json:"name"`
requirements []requirement `json:"requirements"`
}
type report struct {
Domains []domain `json:"domains"`
}