github.com/kastenhq/syft@v0.0.0-20230821225854-0710af25cdbe/syft/formats/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  }