github.com/anchore/syft@v1.4.2-0.20240516191711-1bec1fc5d397/syft/format/syftjson/model/relationship.go (about)

     1  package model
     2  
     3  type Relationship struct {
     4  	Parent   string      `json:"parent"`
     5  	Child    string      `json:"child"`
     6  	Type     string      `json:"type"`
     7  	Metadata interface{} `json:"metadata,omitempty"`
     8  }