github.com/anchore/syft@v1.38.2/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  	Supplier string `hash:"ignore"`
     9  	Metadata interface{}
    10  }