mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +01:00
* add new format pattern Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * add syftjson format Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * add internal formats helper Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * add SBOM encode/decode to lib API Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * remove json presenter + update presenter tests to use common utils Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * remove presenter format enum type + add formats shim in presenter helper Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * add MustCPE helper for tests Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * update usage of format enum Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * add test fixtures for encode/decode tests Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * fix integration test Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * migrate format detection to use reader Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * address review comments Signed-off-by: Alex Goodman <alex.goodman@anchore.com>
24 lines
1.2 KiB
Go
24 lines
1.2 KiB
Go
package model
|
|
|
|
// Document represents the syft cataloging findings as a JSON document
|
|
type Document struct {
|
|
Artifacts []Package `json:"artifacts"` // Artifacts is the list of packages discovered and placed into the catalog
|
|
ArtifactRelationships []Relationship `json:"artifactRelationships"`
|
|
Source Source `json:"source"` // Source represents the original object that was cataloged
|
|
Distro Distro `json:"distro"` // Distro represents the Linux distribution that was detected from the source
|
|
Descriptor Descriptor `json:"descriptor"` // Descriptor is a block containing self-describing information about syft
|
|
Schema Schema `json:"schema"` // Schema is a block reserved for defining the version for the shape of this JSON document and where to find the schema document to validate the shape
|
|
}
|
|
|
|
// Descriptor describes what created the document as well as surrounding metadata
|
|
type Descriptor struct {
|
|
Name string `json:"name"`
|
|
Version string `json:"version"`
|
|
Configuration interface{} `json:"configuration,omitempty"`
|
|
}
|
|
|
|
type Schema struct {
|
|
Version string `json:"version"`
|
|
URL string `json:"url"`
|
|
}
|