syft/internal/formats/syftjson/model/relationship.go
Alex Goodman 7640df99c8
add power-user specific fields to syft-json format
Signed-off-by: Alex Goodman <alex.goodman@anchore.com>
2021-11-22 14:36:16 -05:00

9 lines
205 B
Go

package model
type Relationship struct {
Parent string `json:"parent"`
Child string `json:"child"`
Type string `json:"type"`
Metadata interface{} `json:"metadata,omitempty"`
}