github.com/anchore/syft@v1.4.2-0.20240516191711-1bec1fc5d397/syft/source/description.go (about)

     1  package source
     2  
     3  // Description represents any static source data that helps describe "what" was cataloged.
     4  type Description struct {
     5  	ID       string `hash:"ignore"` // the id generated from the parent source struct
     6  	Name     string `hash:"ignore"`
     7  	Version  string `hash:"ignore"`
     8  	Metadata interface{}
     9  }