1
0
Fork 0
mirror of https://github.com/gocsaf/csaf.git synced 2025-12-22 11:55:40 +01:00

fix: product tree properties

This commit is contained in:
Christoph Klassen 2023-09-11 21:31:45 +02:00
parent ed42f193d1
commit bdd7f24b31

View file

@ -376,8 +376,8 @@ type Relationship struct {
// ProductTree contains product names that can be referenced elsewhere in the document.
type ProductTree struct {
Branches []*Branch `json:"branches,omitempty"`
FullProductNames []*FullProductName `json:"full_product_name,omitempty"`
ProductGroups *ProductGroups `json:"product_groups,omitempty"`
FullProductNames []*FullProductName `json:"full_product_names,omitempty"`
ProductGroups []*ProductGroup `json:"product_groups,omitempty"`
RelationShips []*Relationship `json:"relationships,omitempty"`
}