package
Version:
v1.5.49
Opens a new window with list of versions in this module.
Published: Feb 5, 2026
License: Apache-2.0
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
Package hydra contains common types for dealing with the Red Hat Search API
(aka hydra).
I'm currently unaware of comprehensive documentation. This package contains
just the observed structure needed for claircore's test infrastructure.
type Doc struct {
ID string `json:"id"`
Repository string `json:"repository"`
Registry string `json:"registry"`
Layers []string `json:"parsed_data_layers"`
}
Doc is an individual search result for "ContainerRepository" documents.
This has just enough structure to get at the needed data.
type Response struct {
Response struct {
Docs []Doc `json:"docs"`
} `json:"response"`
}
Response is the top-level response from the hydra service.
This has just enough structure to get at the needed data.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.