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

     1  package source
     2  
     3  import "github.com/anchore/syft/syft/file"
     4  
     5  type FileMetadata struct {
     6  	Path     string        `json:"path" yaml:"path"`
     7  	Digests  []file.Digest `json:"digests,omitempty" yaml:"digests,omitempty"`
     8  	MIMEType string        `json:"mimeType" yaml:"mimeType"`
     9  }