github.com/noqcks/syft@v0.0.0-20230920222752-a9e2c4e288e5/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  }